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 3524


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

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/polynomial.lisp

    r3523 r3524  
    145145(defgeneric leading-coefficient (object)
    146146  (:method ((self poly))
    147     (scalar-coeff (leading-term self)))
     147    (car (leading-term self)))
    148148  (:documentation "The leading coefficient of a polynomial. It signals error for a zero polynomial."))
    149149
     
    151151(defgeneric second-leading-coefficient (object)
    152152  (:method ((self poly))
    153     (scalar-coeff (second-leading-term self)))
     153    (car (second-leading-term self)))
    154154  (:documentation "The second leading coefficient of a polynomial. It
    155155  signals error for a polynomial with at most one term."))
Note: See TracChangeset for help on using the changeset viewer.