Changeset 1394 for branches/f4grobner
- Timestamp:
- 2015-06-11T23:11:59-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/ideal.lisp
r1393 r1394 190 190 191 191 ;; Calculate F : p1^inf : p2^inf : ... : ps^inf 192 (defun ideal-polysaturation-1 (ring f plist start &optional (top-reduction-only $poly_top_reduction_only))192 (defun ideal-polysaturation-1 (ring-and-order f plist start &optional (top-reduction-only $poly_top_reduction_only)) 193 193 "Returns the reduced Grobner basis of the ideal obtained by a 194 194 sequence of successive saturations in the polynomials … … 196 196 polynomial list F." 197 197 (cond 198 ((endp plist) (reduced-grobner ring f start top-reduction-only)) 198 ((endp plist) 199 (reduced-grobner ring f start top-reduction-only)) 199 200 (t (let ((g (ideal-saturation-1 ring f (car plist) start top-reduction-only))) 200 201 (ideal-polysaturation-1 ring g (rest plist) (length g) top-reduction-only)))))
Note:
See TracChangeset
for help on using the changeset viewer.