[4502] | 1 | (in-package "POLYNOMIAL")
|
---|
| 2 |
|
---|
| 3 | (defgeneric static-sugar (object)
|
---|
| 4 | (:documentation "Return statically calculated sugar of object OBJECT. That is,
|
---|
| 5 | the sugar value which does not assume that the object is a result of any prior calculations.")
|
---|
| 6 | (:method ((object monom))
|
---|
[4505] | 7 | "Static sugar of a monom OBJECT is simply the total degree."
|
---|
[4502] | 8 | (total-degree object))
|
---|
| 9 | (:method ((object poly))
|
---|
[4505] | 10 | "Static sugar of a poly OBJECT is the maximum sugar of its terms."
|
---|
| 11 | (with-slots (termlist)
|
---|
[4502] | 12 | object
|
---|
| 13 | (loop for trm in termlist maximize (sugar trm)))))
|
---|
| 14 |
|
---|
| 15 | (defclass sugar ()
|
---|
[4507] | 16 | ((value :initarg :value :initform -1 :accessor sugar-value :type fixnum))
|
---|
| 17 | (:documentation "Sugar is a quantity added to various objects, such as monomials, terms and polynomials."))
|
---|
[4502] | 18 |
|
---|
| 19 | (defclass monom-with-sugar (monom sugar) ())
|
---|
| 20 |
|
---|
[4505] | 21 | (defmethod print-object ((self monom-with-sugar) stream)
|
---|
| 22 | (print-unreadable-object (self stream :type t :identity t)
|
---|
| 23 | (with-accessors ((exponents monom-exponents) (value sugar-value))
|
---|
| 24 | self
|
---|
| 25 | (format stream "EXPONENTS=~A SUGAR=~A"
|
---|
| 26 | exponents value))))
|
---|
| 27 |
|
---|
| 28 |
|
---|
[4502] | 29 | (defmethod shared-initialize :after ((self monom-with-sugar) slot-names &rest initargs &key)
|
---|
[4504] | 30 | "Initialize sugar value based on the exponents."
|
---|
[4502] | 31 | (declare (ignore slot-names initargs))
|
---|
[4504] | 32 | (setf (slot-value self 'value) (static-sugar self)))
|
---|
[4502] | 33 |
|
---|
[4505] | 34 | (defclass term-with-sugar (term sugar) ())
|
---|
[4502] | 35 |
|
---|
[4505] | 36 | (defmethod print-object ((self term-with-sugar) stream)
|
---|
| 37 | (print-unreadable-object (self stream :type t :identity t)
|
---|
| 38 | (with-accessors ((exponents monom-exponents) (value sugar-value) (coeff term-coeff))
|
---|
| 39 | self
|
---|
| 40 | (format stream "EXPONENTS=~A COEFF=~A SUGAR=~A"
|
---|
| 41 | exponents coeff value))))
|
---|