- Timestamp:
- 2015-06-11T22:13:25-07:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/f4grobner/gb-postprocessing.lisp
r1341 r1342 68 68 ;;Find p in Q such that lm(p) is in LM(Q\{p}) 69 69 (setf found nil) 70 (let ((x (find-if #'(lambda (x) (member-if #'(lambda (p) (monom-divides-p (poly-lm x) (poly-lm p))))) q))) 70 (let ((x (find-if 71 #'(lambda (x) 72 (member-if #'(lambda (p) 73 (monom-divides-p 74 (poly-lm x) 75 (poly-lm p))))) 76 q))) 71 77 (when x 72 78 (setf found t
Note:
See TracChangeset
for help on using the changeset viewer.