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 1095


Ignore:
Timestamp:
2015-06-10T09:46:36-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r1094 r1095  
    365365  (poly-eval (read-infix-form :stream stream) vars))
    366366
     367(defun read-poly-from-string (string vars)
     368  "Reads an expression in prefix form from a string STRING.
     369If the expression represents a polynomial or a list of polynomials in variables VARS then
     370the polynomial or list of polynomials is returned."
     371  (with-input-from-string (s string)
     372    (read-poly vars :stream s)))
     373 
     374
    367375;;(set-dispatch-macro-character #\# #\P #'poly-reader *readtable*)
Note: See TracChangeset for help on using the changeset viewer.