Changeset 1596 for branches/f4grobner
- Timestamp:
- 2015-06-14T10:49:11-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/ideal.lisp
r1595 r1596 57 57 58 58 (defun ring-intersection (plist k) 59 "This function assumes that polynomial list PLIST is a Grobner basis 60 and it calculates the intersection with the ring R[X[K],...,X[N-1]], i.e. 61 it discards polynomials which depend on variables X[0], X[1], ..., X[K-1]." 59 "This function assumes that polynomial list 60 PLIST=(P[0],P[1],...,P[J-1]) is a Grobner basis and it calculates the 61 intersection of Id({P[0],P[1],...,P[J-1]}) with the ring 62 R[X[K],...,X[N-1]], i.e. it discards polynomials which depend on 63 variables X[0], X[1], ..., X[K-1]." 62 64 (dotimes (i k plist) 63 65 (setf plist
Note:
See TracChangeset
for help on using the changeset viewer.