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 2525


Ignore:
Timestamp:
2015-06-19T13:35:33-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r2522 r2525  
    6565(defgeneric leading-term (object)
    6666  (:method ((self poly))
    67     (car (poly-termlist self))))
     67    (car (poly-termlist self)))
     68  (:documentation "The leading term of a polynomial, or NIL for zero polynomial."))
    6869
    6970;; Second term
    7071(defgeneric second-leading-term (object)
    7172  (:method ((self poly))
    72     (cadar (poly-termlist self))))
     73    (cadar (poly-termlist self)))
     74  (:documentation "The second leading term of a polynomial, or NIL for a polynomial with at most one term."))
    7375
    7476;; Leading coefficient
Note: See TracChangeset for help on using the changeset viewer.