Changeset 1380 for branches/f4grobner
- Timestamp:
- 2015-06-11T23:05:05-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/ideal.lisp
r1379 r1380 69 69 (ring-intersection (reduced-grobner ring-and-order flist start top-reduction-only) k)) 70 70 71 (defun colon-ideal (ring f g &optional (top-reduction-only $poly_top_reduction_only)) 71 (defun colon-ideal (ring-and-order f g 72 &optional 73 (top-reduction-only $poly_top_reduction_only) 74 &aux 75 (ring (ro-ring ring-and-order))) 72 76 "Returns the reduced Grobner basis of the colon ideal Id(F):Id(G), 73 77 where F and G are two lists of polynomials. The colon ideal I:J is 74 78 defined as the set of polynomials H such that for all polynomials W in 75 79 J the polynomial W*H belongs to I." 80 (declare (type ring-and-order ring-and-order)) 76 81 (cond 77 82 ((endp g)
Note:
See TracChangeset
for help on using the changeset viewer.