Changeset 4365 for branches/f4grobner
- Timestamp:
- 2016-06-06T18:18:59-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/symbolic-polynomial.lisp
r4346 r4365 106 106 (stream t) 107 107 (order #'lex>) 108 (coefficient-class 'rational-field))108 (coefficient-class *coefficient-class*)) 109 109 "Reads an expression in prefix form from a stream STREAM. 110 110 The expression read from the strem should represent a polynomial or a … … 117 117 &optional 118 118 (order #'lex>) 119 (coefficient-class 'rational-field))119 (coefficient-class *coefficient-class*)) 120 120 "Converts a string STR to a polynomial in variables VARS." 121 121 (with-input-from-string (s str) … … 141 141 &optional 142 142 (order #'lex>) 143 (coefficient-class 'rational-field))143 (coefficient-class *coefficient-class*)) 144 144 "Convert a string STR representing a polynomial or polynomial list to 145 145 an association list (... (MONOM . COEFF) ...)."
Note:
See TracChangeset
for help on using the changeset viewer.