]> git.eshelyaron.com Git - emacs.git/commitdiff
Use iteration in math-factorial-iter
authormichael schuldt <mbschuldt@gmail.com>
Tue, 18 Apr 2017 18:24:37 +0000 (11:24 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 18 Apr 2017 18:25:13 +0000 (11:25 -0700)
* lisp/calc/calc-comb.el (math-factorial-iter):
Use iteration instead of recursion to avoid max-specpdl-size problem.
Copyright-paperwork-exempt: yes

lisp/calc/calc-comb.el

index c84ff236851bac4b9657800b52db3818d224a1ce..91fbb7b2b8a29e8f0c14f23237b6f2fd706044e0 100644 (file)
     (math-gammap1-raw '(float -25 -2))))
 
 (defun math-factorial-iter (count n f)
-  (if (= (% n 5) 1)
-      (math-working (format "factorial(%d)" (1- n)) f))
-  (if (> count 0)
-      (math-factorial-iter (1- count) (1+ n) (math-mul n f))
-    f))
+  (while (> count 0)
+    (if (= (% n 5) 1)
+       (math-working (format "factorial(%d)" (1- n)) f))
+    (setq count (1- count)
+         f (math-mul n f)
+         n (1+ n)))
+  f)
 
 (defun calcFunc-dfact (n)   ; [I I] [F F] [Public]
   (cond ((Math-integer-negp n)