[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"
|
---|
[1608] | 30 | (:use :cl :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
|
---|
| 44 | (defun lex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
| 45 | "Return T if P>Q with respect to lexicographic order, otherwise NIL.
|
---|
| 46 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[1929] | 47 | (declare (type monom p q) (type fixnum start end))
|
---|
[49] | 48 | (do ((i start (1+ i)))
|
---|
| 49 | ((>= i end) (values nil t))
|
---|
| 50 | (cond
|
---|
| 51 | ((> (monom-elt p i) (monom-elt q i))
|
---|
| 52 | (return-from lex> (values t nil)))
|
---|
| 53 | ((< (monom-elt p i) (monom-elt q i))
|
---|
| 54 | (return-from lex> (values nil nil))))))
|
---|
| 55 |
|
---|
| 56 | ;; total degree order , ties broken by lexicographic
|
---|
| 57 | (defun grlex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
| 58 | "Return T if P>Q with respect to graded lexicographic order, otherwise NIL.
|
---|
| 59 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[1930] | 60 | (declare (type monom p q) (type fixnum start end))
|
---|
[49] | 61 | (let ((d1 (monom-total-degree p start end))
|
---|
| 62 | (d2 (monom-total-degree q start end)))
|
---|
[1935] | 63 | (declare (type fixnum d1 d2))
|
---|
[49] | 64 | (cond
|
---|
| 65 | ((> d1 d2) (values t nil))
|
---|
| 66 | ((< d1 d2) (values nil nil))
|
---|
| 67 | (t
|
---|
| 68 | (lex> p q start end)))))
|
---|
| 69 |
|
---|
| 70 |
|
---|
| 71 | ;; reverse lexicographic
|
---|
| 72 | (defun revlex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
| 73 | "Return T if P>Q with respect to reverse lexicographic order, NIL
|
---|
| 74 | otherwise. The second returned value is T if P=Q, otherwise it is
|
---|
| 75 | NIL. This is not and admissible monomial order because some sets do
|
---|
| 76 | not have a minimal element. This order is useful in constructing other
|
---|
| 77 | orders."
|
---|
[1936] | 78 | (declare (type monom p q) (type fixnum start end))
|
---|
[49] | 79 | (do ((i (1- end) (1- i)))
|
---|
| 80 | ((< i start) (values nil t))
|
---|
[1936] | 81 | (declare (type fixnum i))
|
---|
[49] | 82 | (cond
|
---|
| 83 | ((< (monom-elt p i) (monom-elt q i))
|
---|
| 84 | (return-from revlex> (values t nil)))
|
---|
| 85 | ((> (monom-elt p i) (monom-elt q i))
|
---|
| 86 | (return-from revlex> (values nil nil))))))
|
---|
| 87 |
|
---|
| 88 |
|
---|
[426] | 89 | ;; total degree, ties broken by reverse lexicographic
|
---|
| 90 | (defun grevlex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
| 91 | "Return T if P>Q with respect to graded reverse lexicographic order,
|
---|
| 92 | NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[1930] | 93 | (declare (type monom p q) (type fixnum start end))
|
---|
[426] | 94 | (let ((d1 (monom-total-degree p start end))
|
---|
| 95 | (d2 (monom-total-degree q start end)))
|
---|
[1937] | 96 | (declare (type fixnum d1 d2))
|
---|
[426] | 97 | (cond
|
---|
| 98 | ((> d1 d2) (values t nil))
|
---|
| 99 | ((< d1 d2) (values nil nil))
|
---|
| 100 | (t
|
---|
| 101 | (revlex> p q start end)))))
|
---|
| 102 |
|
---|
[49] | 103 | (defun invlex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
| 104 | "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise
|
---|
| 105 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
[1930] | 106 | (declare (type monom p q) (type fixnum start end))
|
---|
[49] | 107 | (do ((i (1- end) (1- i)))
|
---|
| 108 | ((< i start) (values nil t))
|
---|
[1938] | 109 | (declare (type fixnum i))
|
---|
| 110 | (cond
|
---|
| 111 | ((> (monom-elt p i) (monom-elt q i))
|
---|
| 112 | (return-from invlex> (values t nil)))
|
---|
| 113 | ((< (monom-elt p i) (monom-elt q i))
|
---|
| 114 | (return-from invlex> (values nil nil))))))
|
---|
[439] | 115 |
|
---|
| 116 |
|
---|
[910] | 117 | (defun reverse-monomial-order (order)
|
---|
| 118 | "Create the inverse monomial order to the given monomial order ORDER."
|
---|
[924] | 119 | #'(lambda (p q &optional (start 0) (end (monom-dimension q)))
|
---|
[1931] | 120 | (declare (type monom p q) (type fixnum start end))
|
---|
[924] | 121 | (funcall order q p start end)))
|
---|
[439] | 122 |
|
---|
| 123 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 124 | ;;
|
---|
| 125 | ;; Order making functions
|
---|
| 126 | ;;
|
---|
| 127 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
| 128 |
|
---|
[922] | 129 | ;; This returns a closure with the same signature
|
---|
| 130 | ;; as all orders such as #'LEX>.
|
---|
[946] | 131 | (defun make-elimination-order-factory-1 (&optional (secondary-elimination-order #'lex>))
|
---|
[917] | 132 | "It constructs an elimination order used for the 1-st elimination ideal,
|
---|
| 133 | i.e. for eliminating the first variable. Thus, the order compares the degrees of the
|
---|
| 134 | first variable in P and Q first, with ties broken by SECONDARY-ELIMINATION-ORDER."
|
---|
[914] | 135 | #'(lambda (p q &optional (start 0) (end (monom-dimension p)))
|
---|
[1932] | 136 | (declare (type monom p q) (type fixnum start end))
|
---|
[914] | 137 | (cond
|
---|
[920] | 138 | ((> (monom-elt p start) (monom-elt q start))
|
---|
| 139 | (values t nil))
|
---|
| 140 | ((< (monom-elt p start) (monom-elt q start))
|
---|
| 141 | (values nil nil))
|
---|
| 142 | (t
|
---|
| 143 | (funcall secondary-elimination-order p q (1+ start) end)))))
|
---|
[914] | 144 |
|
---|
[922] | 145 | ;; This returns a closure which is called with an integer argument.
|
---|
[932] | 146 | ;; The result is *another closure* with the same signature as all
|
---|
| 147 | ;; orders such as #'LEX>.
|
---|
[945] | 148 | (defun make-elimination-order-factory (&optional
|
---|
| 149 | (primary-elimination-order #'lex>)
|
---|
| 150 | (secondary-elimination-order #'lex>))
|
---|
[910] | 151 | "Return a function with a single integer argument K. This should be
|
---|
| 152 | the number of initial K variables X[0],X[1],...,X[K-1], which precede
|
---|
| 153 | remaining variables. The call to the closure creates a predicate
|
---|
| 154 | which compares monomials according to the K-th elimination order. The
|
---|
| 155 | monomial orders PRIMARY-ELIMINATION-ORDER and
|
---|
| 156 | SECONDARY-ELIMINATION-ORDER are used to compare the first K and the
|
---|
| 157 | remaining variables, respectively, with ties broken by lexicographical
|
---|
| 158 | order. That is, if PRIMARY-ELIMINATION-ORDER yields (VALUES NIL T),
|
---|
| 159 | which indicates that the first K variables appear with identical
|
---|
| 160 | powers, then the result is that of a call to
|
---|
| 161 | SECONDARY-ELIMINATION-ORDER applied to the remaining variables
|
---|
| 162 | X[K],X[K+1],..."
|
---|
| 163 | #'(lambda (k)
|
---|
[914] | 164 | (cond
|
---|
[919] | 165 | ((<= k 0)
|
---|
| 166 | (error "K must be at least 1"))
|
---|
[914] | 167 | ((= k 1)
|
---|
[930] | 168 | (make-elimination-order-factory-1 secondary-elimination-order))
|
---|
[914] | 169 | (t
|
---|
| 170 | #'(lambda (p q &optional (start 0) (end (monom-dimension p)))
|
---|
[1933] | 171 | (declare (type monom p q) (type fixnum start end))
|
---|
[914] | 172 | (multiple-value-bind (primary equal)
|
---|
| 173 | (funcall primary-elimination-order p q start k)
|
---|
| 174 | (if equal
|
---|
| 175 | (funcall secondary-elimination-order p q k end)
|
---|
| 176 | (values primary nil))))))))
|
---|
[439] | 177 |
|
---|