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 3099


Ignore:
Timestamp:
2015-06-21T23:35:59-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3096 r3099  
    2626           "POLY-TERM-ORDER"
    2727           "CHANGE-TERM-ORDER"
     28           "STANDARD-EXTENSION"
    2829           "SATURATION-EXTENSION"
    2930           "ALIST->POLY")
     
    5859(defun alist->poly (alist &aux (poly (make-instance 'poly)))
    5960  "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...)."
    60   (dolist (x alist)
     61  (dolist (x alist poly)
    6162    (insert-item poly (make-instance 'term :exponents (car x) :coeff (cdr x)))))
    6263
Note: See TracChangeset for help on using the changeset viewer.