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 3526


Ignore:
Timestamp:
2015-09-05T15:10:41-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3525 r3526  
    131131
    132132;; Leading term
    133 (defgeneric leading-term (object)
     133(defgeneric poly-leading-term (object)
    134134  (:method ((self poly))
    135135    (car (poly-termlist self)))
     
    137137
    138138;; Second term
    139 (defgeneric second-leading-term (object)
     139(defgeneric poly-second-leading-term (object)
    140140  (:method ((self poly))
    141141    (cadar (poly-termlist self)))
     
    143143
    144144;; Leading coefficient
    145 (defgeneric leading-coefficient (object)
     145(defgeneric poly-leading-coefficient (object)
    146146  (:method ((self poly))
    147     (cdr (leading-term self)))
     147    (cdr (poly-leading-term self)))
    148148  (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
    149149
Note: See TracChangeset for help on using the changeset viewer.