close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 3721 for branches/f4grobner


Ignore:
Timestamp:
2015-09-06T07:53:37-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3720 r3721  
    487487
    488488(defgeneric universal-expt (x y)
     489  (:documentation "Raises X to power Y.")
    489490  (:method ((x number) (y integer)) (expt x y))
    490491  (:method ((x t) (y integer))
     
    498499            (p 1 (if (not (zerop (logand k y))) (multiply p q) p)))
    499500           ((> k y) p)
    500          (declare (fixnum k))))))
    501   (:documentation "Raises X to power Y."))
     501         (declare (fixnum k)))))))
Note: See TracChangeset for help on using the changeset viewer.