Changeset 1752 for branches/f4grobner
- Timestamp:
- 2015-06-15T09:02:21-07:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/mx-grobner.lisp
r1751 r1752 431 431 (poly-expt ring-and-order p n))) 432 432 433 #|434 435 436 433 (defmfun $poly_content (p vars) 437 (with- parsed-polynomials((vars) :polynomials (p))438 (poly-content +maxima-ring+p)))434 (with-ring-and-order ((vars) :polynomials (p)) 435 (poly-content ring-and-order p))) 439 436 440 437 (defmfun $poly_pseudo_divide (f fl vars 441 &aux (vars (coerce-maxima-list vars)) 442 (f (parse-poly f vars)) 443 (fl (parse-poly-list fl vars))) 438 &aux 439 (vars (coerce-maxima-list vars)) 440 (f (parse-poly f vars)) 441 (fl (parse-poly-list fl vars))) 444 442 (multiple-value-bind (quot rem c division-count) 445 443 (poly-pseudo-divide +maxima-ring+ f fl) … … 450 448 ,division-count))) 451 449 450 #| 451 452 452 (defmfun $poly_exact_divide (f g vars) 453 453 (with-parsed-polynomials ((vars) :polynomials (f g) :value-type :polynomial)
Note:
See TracChangeset
for help on using the changeset viewer.