close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 1189


Ignore:
Timestamp:
2015-06-10T20:55:09-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r1172 r1189  
    320320  (poly-lc (poly-eval expr nil ring order)))
    321321
    322 (defun spoly (ring f g)
     322(defun spoly (ring-and-order f g
     323              &aux
     324                (ring (ro-ring ring-and-order)))
    323325  "It yields the S-polynomial of polynomials F and G."
    324326  (declare (type poly f g))
     
    331333      (declare (ignore c))
    332334      (poly-sub
    333        ring
     335       ring-and-order
    334336       (scalar-times-poly ring cg (monom-times-poly mf f))
    335337       (scalar-times-poly ring cf (monom-times-poly mg g))))))
Note: See TracChangeset for help on using the changeset viewer.