[1201] | 1 | ;;; -*- Mode: Lisp -*-
|
---|
[80] | 2 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 3 | ;;;
|
---|
| 4 | ;;; Copyright (C) 1999, 2002, 2009, 2015 Marek Rychlik <rychlik@u.arizona.edu>
|
---|
| 5 | ;;;
|
---|
| 6 | ;;; This program is free software; you can redistribute it and/or modify
|
---|
| 7 | ;;; it under the terms of the GNU General Public License as published by
|
---|
| 8 | ;;; the Free Software Foundation; either version 2 of the License, or
|
---|
| 9 | ;;; (at your option) any later version.
|
---|
| 10 | ;;;
|
---|
| 11 | ;;; This program is distributed in the hope that it will be useful,
|
---|
| 12 | ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 13 | ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 14 | ;;; GNU General Public License for more details.
|
---|
| 15 | ;;;
|
---|
| 16 | ;;; You should have received a copy of the GNU General Public License
|
---|
| 17 | ;;; along with this program; if not, write to the Free Software
|
---|
| 18 | ;;; Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
---|
| 19 | ;;;
|
---|
| 20 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 21 |
|
---|
[444] | 22 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 23 | ;;
|
---|
| 24 | ;; Implementations of various admissible monomial orders
|
---|
[923] | 25 | ;; Implementation of order-making functions/closures.
|
---|
[444] | 26 | ;;
|
---|
| 27 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 28 |
|
---|
[412] | 29 | (defpackage "ORDER"
|
---|
[2425] | 30 | (:use :cl :ring :monom)
|
---|
[412] | 31 | (:export "LEX>"
|
---|
| 32 | "GRLEX>"
|
---|
| 33 | "REVLEX>"
|
---|
| 34 | "GREVLEX>"
|
---|
[440] | 35 | "INVLEX>"
|
---|
| 36 | "REVERSE-MONOMIAL-ORDER"
|
---|
[933] | 37 | "MAKE-ELIMINATION-ORDER-FACTORY"))
|
---|
[80] | 38 |
|
---|
[417] | 39 | (in-package :order)
|
---|
| 40 |
|
---|
[1934] | 41 | (proclaim '(optimize (speed 3) (space 0) (safety 0) (debug 0)))
|
---|
| 42 |
|
---|
[49] | 43 | ;; pure lexicographic
|
---|
[2439] | 44 | (defgeneric lex> (p q &optional start end)
|
---|
[2433] | 45 | (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p)))
|
---|
[2432] | 46 | "Return T if P>Q with respect to lexicographic order, otherwise NIL.
|
---|
[49] | 47 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[2432] | 48 | (declare (type fixnum start end))
|
---|
| 49 | (do ((i start (1+ i)))
|
---|
| 50 | ((>= i end) (values nil t))
|
---|
| 51 | (cond
|
---|
| 52 | ((> (r-elt p i) (r-elt q i))
|
---|
| 53 | (return-from lex> (values t nil)))
|
---|
| 54 | ((< (r-elt p i) (r-elt q i))
|
---|
| 55 | (return-from lex> (values nil nil)))))))
|
---|
[49] | 56 |
|
---|
| 57 | ;; total degree order , ties broken by lexicographic
|
---|
[2439] | 58 | (defgeneric grlex> (p q &optional start end)
|
---|
[2433] | 59 | (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p)))
|
---|
[2432] | 60 | "Return T if P>Q with respect to graded lexicographic order, otherwise NIL.
|
---|
[49] | 61 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[2432] | 62 | (declare (type monom p q) (type fixnum start end))
|
---|
| 63 | (let ((d1 (r-total-degree p start end))
|
---|
| 64 | (d2 (r-total-degree q start end)))
|
---|
| 65 | (declare (type fixnum d1 d2))
|
---|
| 66 | (cond
|
---|
| 67 | ((> d1 d2) (values t nil))
|
---|
| 68 | ((< d1 d2) (values nil nil))
|
---|
| 69 | (t
|
---|
| 70 | (lex> p q start end))))))
|
---|
[49] | 71 |
|
---|
| 72 |
|
---|
| 73 | ;; reverse lexicographic
|
---|
[2439] | 74 | (defgeneric revlex> (p q &optional start end)
|
---|
[2434] | 75 | (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p)))
|
---|
| 76 | "Return T if P>Q with respect to reverse lexicographic order, NIL
|
---|
[49] | 77 | otherwise. The second returned value is T if P=Q, otherwise it is
|
---|
| 78 | NIL. This is not and admissible monomial order because some sets do
|
---|
| 79 | not have a minimal element. This order is useful in constructing other
|
---|
| 80 | orders."
|
---|
[2434] | 81 | (declare (type fixnum start end))
|
---|
| 82 | (do ((i (1- end) (1- i)))
|
---|
| 83 | ((< i start) (values nil t))
|
---|
| 84 | (declare (type fixnum i))
|
---|
| 85 | (cond
|
---|
| 86 | ((< (r-elt p i) (r-elt q i))
|
---|
| 87 | (return-from revlex> (values t nil)))
|
---|
| 88 | ((> (r-elt p i) (r-elt q i))
|
---|
| 89 | (return-from revlex> (values nil nil)))))))
|
---|
[49] | 90 |
|
---|
| 91 |
|
---|
[426] | 92 | ;; total degree, ties broken by reverse lexicographic
|
---|
[2439] | 93 | (defgeneric grevlex> (p q &optional start end)
|
---|
[2435] | 94 | (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p)))
|
---|
| 95 | "Return T if P>Q with respect to graded reverse lexicographic order,
|
---|
[426] | 96 | NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[2435] | 97 | (declare (type fixnum start end))
|
---|
| 98 | (let ((d1 (r-total-degree p start end))
|
---|
| 99 | (d2 (r-total-degree q start end)))
|
---|
| 100 | (declare (type fixnum d1 d2))
|
---|
| 101 | (cond
|
---|
| 102 | ((> d1 d2) (values t nil))
|
---|
| 103 | ((< d1 d2) (values nil nil))
|
---|
| 104 | (t
|
---|
| 105 | (revlex> p q start end))))))
|
---|
[426] | 106 |
|
---|
[2439] | 107 | (defgeneric invlex> (p q &optional start end)
|
---|
[2436] | 108 | (:method ((p monom) (q monom) &optional (start 0) (end (r-dimension p)))
|
---|
| 109 | "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise
|
---|
[49] | 110 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[2436] | 111 | (declare (type fixnum start end))
|
---|
| 112 | (do ((i (1- end) (1- i)))
|
---|
| 113 | ((< i start) (values nil t))
|
---|
| 114 | (declare (type fixnum i))
|
---|
| 115 | (cond
|
---|
| 116 | ((> (r-elt p i) (r-elt q i))
|
---|
| 117 | (return-from invlex> (values t nil)))
|
---|
| 118 | ((< (r-elt p i) (r-elt q i))
|
---|
| 119 | (return-from invlex> (values nil nil)))))))
|
---|
[439] | 120 |
|
---|
[910] | 121 | (defun reverse-monomial-order (order)
|
---|
| 122 | "Create the inverse monomial order to the given monomial order ORDER."
|
---|
[2439] | 123 | #'(lambda (p q &optional (start 0) (end (r-dimension q)))
|
---|
| 124 | (declare (type monom p q) (type fixnum start end))
|
---|
| 125 | (funcall order q p start end)))
|
---|
[439] | 126 |
|
---|
| 127 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 128 | ;;
|
---|
| 129 | ;; Order making functions
|
---|
| 130 | ;;
|
---|
| 131 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 132 |
|
---|
[922] | 133 | ;; This returns a closure with the same signature
|
---|
| 134 | ;; as all orders such as #'LEX>.
|
---|
[946] | 135 | (defun make-elimination-order-factory-1 (&optional (secondary-elimination-order #'lex>))
|
---|
[917] | 136 | "It constructs an elimination order used for the 1-st elimination ideal,
|
---|
| 137 | i.e. for eliminating the first variable. Thus, the order compares the degrees of the
|
---|
| 138 | first variable in P and Q first, with ties broken by SECONDARY-ELIMINATION-ORDER."
|
---|
[2433] | 139 | #'(lambda (p q &optional (start 0) (end (r-dimension p)))
|
---|
[1932] | 140 | (declare (type monom p q) (type fixnum start end))
|
---|
[914] | 141 | (cond
|
---|
[2425] | 142 | ((> (r-elt p start) (r-elt q start))
|
---|
[920] | 143 | (values t nil))
|
---|
[2425] | 144 | ((< (r-elt p start) (r-elt q start))
|
---|
[920] | 145 | (values nil nil))
|
---|
| 146 | (t
|
---|
| 147 | (funcall secondary-elimination-order p q (1+ start) end)))))
|
---|
[914] | 148 |
|
---|
[922] | 149 | ;; This returns a closure which is called with an integer argument.
|
---|
[932] | 150 | ;; The result is *another closure* with the same signature as all
|
---|
| 151 | ;; orders such as #'LEX>.
|
---|
[945] | 152 | (defun make-elimination-order-factory (&optional
|
---|
| 153 | (primary-elimination-order #'lex>)
|
---|
| 154 | (secondary-elimination-order #'lex>))
|
---|
[910] | 155 | "Return a function with a single integer argument K. This should be
|
---|
| 156 | the number of initial K variables X[0],X[1],...,X[K-1], which precede
|
---|
| 157 | remaining variables. The call to the closure creates a predicate
|
---|
| 158 | which compares monomials according to the K-th elimination order. The
|
---|
| 159 | monomial orders PRIMARY-ELIMINATION-ORDER and
|
---|
| 160 | SECONDARY-ELIMINATION-ORDER are used to compare the first K and the
|
---|
| 161 | remaining variables, respectively, with ties broken by lexicographical
|
---|
| 162 | order. That is, if PRIMARY-ELIMINATION-ORDER yields (VALUES NIL T),
|
---|
| 163 | which indicates that the first K variables appear with identical
|
---|
| 164 | powers, then the result is that of a call to
|
---|
| 165 | SECONDARY-ELIMINATION-ORDER applied to the remaining variables
|
---|
| 166 | X[K],X[K+1],..."
|
---|
| 167 | #'(lambda (k)
|
---|
[914] | 168 | (cond
|
---|
[919] | 169 | ((<= k 0)
|
---|
| 170 | (error "K must be at least 1"))
|
---|
[914] | 171 | ((= k 1)
|
---|
[930] | 172 | (make-elimination-order-factory-1 secondary-elimination-order))
|
---|
[914] | 173 | (t
|
---|
[2433] | 174 | #'(lambda (p q &optional (start 0) (end (r-dimension p)))
|
---|
[1933] | 175 | (declare (type monom p q) (type fixnum start end))
|
---|
[914] | 176 | (multiple-value-bind (primary equal)
|
---|
| 177 | (funcall primary-elimination-order p q start k)
|
---|
| 178 | (if equal
|
---|
| 179 | (funcall secondary-elimination-order p q k end)
|
---|
| 180 | (values primary nil))))))))
|
---|
[439] | 181 |
|
---|