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 1914


Ignore:
Timestamp:
2015-06-15T18:05:34-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r1913 r1914  
    490490(defun poly-equal-no-sugar-p (p q)
    491491  "Compare polynomials for equality, ignoring sugar."
     492  (declare (type poly p q))
    492493  (equalp (poly-termlist p) (poly-termlist q)))
    493494
    494495(defun poly-set-equal-no-sugar-p (p q)
    495496  "Compare polynomial sets P and Q for equality, ignoring sugar."
     497  (declare (type poly p q))
    496498  (null (set-exclusive-or  p q :test #'poly-equal-no-sugar-p )))
    497499
    498500(defun poly-list-equal-no-sugar-p (p q)
    499501  "Compare polynomial lists P and Q for equality, ignoring sugar."
     502  (declare (type poly p q))
    500503  (every #'poly-equal-no-sugar-p p q))
Note: See TracChangeset for help on using the changeset viewer.