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 3942


Ignore:
Timestamp:
2016-05-29T23:59:45-07:00 (8 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/pair-queue.lisp

    r3941 r3942  
    6565minimal LCM of leading monomials first."))
    6666
     67#|
    6768(defmethod print-object ((self selection-strategy) stream)
    6869  (print-unreadable-object (self stream :type t :identity t)
     
    7273      (format stream "PAIR-KEY-FN=~A PAIR-ORDER-FN=~A"
    7374              pair-key-fn pair-order-fn))))
     75|#
    7476
    7577(defclass min-total-degree-strategy (selection-strategy)
     
    8183(defclass minimal-length-strategy (selection-strategy)
    8284  ((pair-key-fn :initform #'(lambda (p q) (+ (poly-length p) (poly-length q))))
    83    (pair-order :initform #'<))
     85   (pair-order-fn :initform #'<))
    8486  (:documentation "Make a selection strategy where a pair with the minimum combined length of both
    8587polynomials is selected."))
Note: See TracChangeset for help on using the changeset viewer.