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 4370 for branches


Ignore:
Timestamp:
2016-06-06T19:28:40-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r4366 r4370  
    622622  (cons +list-marker+ (mapcar #'(lambda (p) (->sexp p vars)) (cdr self))))
    623623
    624 
    625 (defvar *coefficient-class* 'integer-ring
    626   "The default class in which coefficients are created from
    627 NUMBER tokens.")
    628 
    629 (defun poly-eval (expr vars order &optional (coefficient-class *coefficient-class*))
    630   "Evaluate Lisp form EXPR to a polynomial or a list of polynomials in
    631 variables VARS. Return the resulting polynomial or list of
    632 polynomials.  Standard arithmetical operators in form EXPR are
    633 replaced with their analogues in the ring of polynomials, and the
    634 resulting expression is evaluated, resulting in a polynomial or a list
    635 of polynomials in internal form. A similar operation in another computer
    636 algebra system could be called 'expand' or so."
    637   (labels ((p-eval (p) (poly-eval p vars order))
    638            (p-eval-list (plist) (mapcar #'p-eval plist)))
    639     (cond
    640       ((eq expr 0)
    641        (make-instance 'poly :dimension (length vars)))
    642       ((member expr vars :test #'equalp)
    643        (let ((pos (position expr vars :test #'equalp)))
    644          (make-poly-variable (length vars) pos)))
    645       ((numberp expr)
    646        (make-poly-constant (length vars) (make-instance coefficient-class :value expr)))
    647       ((eq (car expr) +list-marker+)
    648        (cons +list-marker+ (p-eval-list (cdr expr))))
    649       (t
    650        (case (car expr)
    651          (+ (reduce #'add (p-eval-list (cdr expr))))
    652          (- (apply #'subtract (p-eval-list (cdr expr))))
    653          (*
    654           (if (endp (cddr expr))        ;unary
    655               (p-eval (cadr expr))
    656               (apply #'multiply (p-eval-list (cdr expr)))))
    657          (/
    658           ;; A polynomial can be divided by a scalar
    659           (cond
    660             ((endp (cddr expr))
    661              ;; A special case (/ ?), the inverse
    662              (divide (cadr expr)))
    663             (t
    664              (let ((num (p-eval (cadr expr)))
    665                    (denom-inverse (apply #'divide (mapcar #'p-eval (cddr expr)))))
    666                (multiply denom-inverse num)))))
    667          (expt
    668           (cond
    669             ((member (cadr expr) vars :test #'equalp)
    670              ;;Special handling of (expt var pow)
    671              (let ((pos (position (cadr expr) vars :test #'equalp)))
    672                (make-poly-variable (length vars) pos (caddr expr))))
    673             ((not (and (integerp (caddr expr)) (plusp (caddr expr))))
    674              ;; Negative power means division in coefficient ring
    675              ;; Non-integer power means non-polynomial coefficient
    676              expr)
    677             (t (universal-expt (p-eval (cadr expr)) (caddr expr)))))
    678          (otherwise
    679           (error "Cannot evaluate as polynomial: ~A" expr)))))))
    680 
    681624(defmethod make-zero-for ((self poly))
    682625  (make-instance 'poly :dimension (poly-dimension self)))
Note: See TracChangeset for help on using the changeset viewer.