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 3151


Ignore:
Timestamp:
2015-06-22T12:00:18-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/term.lisp

    r3150 r3151  
    5050          (monom-exponents self)
    5151          (scalar-coeff self)))
     52
     53(defmethod r-equalp ((term1 term) (term2 term))
     54  (and (r-equalp (scalar-coeff term1) (scalar-coeff term2))
     55       (r-equalp (monom-exponents term1) (monom-exponents term2))
     56       (r-equalp (monom-dimension term1) (monom-dimension term2))))
     57
    5258
    5359#|
Note: See TracChangeset for help on using the changeset viewer.