]> git.eshelyaron.com Git - emacs.git/commitdiff
* calc/calc-mtx.el (math-lud-pivot-check): New function.
authorJay Belanger <jay.p.belanger@gmail.com>
Tue, 1 Feb 2011 02:15:52 +0000 (20:15 -0600)
committerJay Belanger <jay.p.belanger@gmail.com>
Tue, 1 Feb 2011 02:15:52 +0000 (20:15 -0600)
(math-do-matrix-lud): Use `math-lud-pivot-check' to check the size
of potential pivots.

lisp/ChangeLog
lisp/calc/calc-mtx.el

index b2e5e98016e46ccb7effd9b03e4a200700a5a35e..7e5d94f9703287f178861cfca7029f28ef6fc261 100644 (file)
@@ -1,3 +1,9 @@
+2011-02-01  Jay Belanger  <jay.p.belanger@gmail.com>
+
+       * calc/calc-mtx.el (math-lud-pivot-check): New function.
+       (math-do-matrix-lud): Use `math-lud-pivot-check' to check the size
+       of potential pivots.
+
 2011-01-31  Alan Mackenzie  <acm@muc.de>
 
        * progmodes/cc-cmds.el (c-forward-over-illiterals): Continue
index 9941c11ff14448229c340ae4f7328462799ed5de..5ec15005b482c5953504bebc192ffab8345f18aa 100644 (file)
          (setq math-lud-cache (cons (cons m entry) math-lud-cache)))
        lud))))
 
+
+(defun math-lud-pivot-check (a)
+  "Determine a useful value for checking the size of potential pivots
+in LUD decomposition."
+  (cond ((eq (car-safe a) 'mod)
+         (if (and (math-integerp (nth 1 a))
+                  (math-integerp (nth 2 a))
+                  (eq (math-gcd (nth 1 a) (nth 2 a)) 1))
+             1
+           0))
+        (t
+         (math-abs-approx a))))
+
+
 ;;; Numerical Recipes section 2.3; implicit pivoting omitted.
 (defun math-do-matrix-lud (m)
   (let* ((lu (math-copy-matrix m))
                                            (nth j (nth k lu))))
                k (1+ k)))
        (setcar (nthcdr j (nth i lu)) sum)
-       (let ((dum (math-abs-approx sum)))
+       (let ((dum (math-lud-pivot-check sum)))
          (if (Math-lessp big dum)
              (setq big dum
                    imax i)))