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 578


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/mx-grobner.lisp

    r577 r578  
    164164
    165165(defun parse-poly-list (expr vars)
     166  "Parse a Maxima representation of a list of polynomials."
    166167  (case (caar expr)
    167168    (mlist (mapcar #'(lambda (p) (parse-poly p vars)) (cdr expr)))
     
    170171
    171172(defun parse-poly-list-list (poly-list-list vars)
     173  "Parse a Maxima representation of a list of lists of polynomials."
    172174  (mapcar #'(lambda (g) (parse-poly-list g vars)) (coerce-maxima-list poly-list-list)))
    173175
Note: See TracChangeset for help on using the changeset viewer.