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 3093


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3092 r3093  
    5656
    5757(defun alist->poly (alist &aux (make-instance 'poly))
    58   "Read a polynomial from an alist formatted as ( ... (exponents . coeff) ...).
    59 Returns an object of clas POLY."
     58  "It reads polynomial from an alist formatted as ( ... (exponents . coeff) ...)."
    6059  (dolist (x alist)
    6160    (insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x))))
Note: See TracChangeset for help on using the changeset viewer.