| 1 | ;;; -*- Mode: Lisp; Package: Maxima; Syntax: Common-Lisp; Base: 10 -*-
|
|---|
| 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 |
|
|---|
| 22 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 23 | ;;
|
|---|
| 24 | ;; Implementations of various admissible monomial orders
|
|---|
| 25 | ;;
|
|---|
| 26 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 27 |
|
|---|
| 28 | (defpackage "ORDER"
|
|---|
| 29 | (:use :cl :monomial)
|
|---|
| 30 | (:export "LEX>"
|
|---|
| 31 | "GRLEX>"
|
|---|
| 32 | "REVLEX>"
|
|---|
| 33 | "GREVLEX>"
|
|---|
| 34 | "INVLEX>"
|
|---|
| 35 | "REVERSE-MONOMIAL-ORDER"
|
|---|
| 36 | "MAKE-ELIMINATION-ORDER-MAKER"))
|
|---|
| 37 |
|
|---|
| 38 | (in-package :order)
|
|---|
| 39 |
|
|---|
| 40 | ;; pure lexicographic
|
|---|
| 41 | (defun lex> (p q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 42 | "Return T if P>Q with respect to lexicographic order, otherwise NIL.
|
|---|
| 43 | The second returned value is T if P=Q, otherwise it is NIL."
|
|---|
| 44 | (do ((i start (1+ i)))
|
|---|
| 45 | ((>= i end) (values nil t))
|
|---|
| 46 | (cond
|
|---|
| 47 | ((> (monom-elt p i) (monom-elt q i))
|
|---|
| 48 | (return-from lex> (values t nil)))
|
|---|
| 49 | ((< (monom-elt p i) (monom-elt q i))
|
|---|
| 50 | (return-from lex> (values nil nil))))))
|
|---|
| 51 |
|
|---|
| 52 | ;; total degree order , ties broken by lexicographic
|
|---|
| 53 | (defun grlex> (p q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 54 | "Return T if P>Q with respect to graded lexicographic order, otherwise NIL.
|
|---|
| 55 | The second returned value is T if P=Q, otherwise it is NIL."
|
|---|
| 56 | (let ((d1 (monom-total-degree p start end))
|
|---|
| 57 | (d2 (monom-total-degree q start end)))
|
|---|
| 58 | (cond
|
|---|
| 59 | ((> d1 d2) (values t nil))
|
|---|
| 60 | ((< d1 d2) (values nil nil))
|
|---|
| 61 | (t
|
|---|
| 62 | (lex> p q start end)))))
|
|---|
| 63 |
|
|---|
| 64 |
|
|---|
| 65 | ;; reverse lexicographic
|
|---|
| 66 | (defun revlex> (p q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 67 | "Return T if P>Q with respect to reverse lexicographic order, NIL
|
|---|
| 68 | otherwise. The second returned value is T if P=Q, otherwise it is
|
|---|
| 69 | NIL. This is not and admissible monomial order because some sets do
|
|---|
| 70 | not have a minimal element. This order is useful in constructing other
|
|---|
| 71 | orders."
|
|---|
| 72 | (do ((i (1- end) (1- i)))
|
|---|
| 73 | ((< i start) (values nil t))
|
|---|
| 74 | (cond
|
|---|
| 75 | ((< (monom-elt p i) (monom-elt q i))
|
|---|
| 76 | (return-from revlex> (values t nil)))
|
|---|
| 77 | ((> (monom-elt p i) (monom-elt q i))
|
|---|
| 78 | (return-from revlex> (values nil nil))))))
|
|---|
| 79 |
|
|---|
| 80 |
|
|---|
| 81 | ;; total degree, ties broken by reverse lexicographic
|
|---|
| 82 | (defun grevlex> (p q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 83 | "Return T if P>Q with respect to graded reverse lexicographic order,
|
|---|
| 84 | NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL."
|
|---|
| 85 | (let ((d1 (monom-total-degree p start end))
|
|---|
| 86 | (d2 (monom-total-degree q start end)))
|
|---|
| 87 | (cond
|
|---|
| 88 | ((> d1 d2) (values t nil))
|
|---|
| 89 | ((< d1 d2) (values nil nil))
|
|---|
| 90 | (t
|
|---|
| 91 | (revlex> p q start end)))))
|
|---|
| 92 |
|
|---|
| 93 | (defun invlex> (p q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 94 | "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise
|
|---|
| 95 | The second returned value is T if P=Q, otherwise it is NIL."
|
|---|
| 96 | (do ((i (1- end) (1- i)))
|
|---|
| 97 | ((< i start) (values nil t))
|
|---|
| 98 | (cond
|
|---|
| 99 | ((> (monom-elt p i) (monom-elt q i))
|
|---|
| 100 | (return-from invlex> (values t nil)))
|
|---|
| 101 | ((< (monom-elt p i) (monom-elt q i))
|
|---|
| 102 | (return-from invlex> (values nil nil))))))
|
|---|
| 103 |
|
|---|
| 104 |
|
|---|
| 105 | (defun reverse-monomial-order (order)
|
|---|
| 106 | "Create the inverse monomial order to the given monomial order ORDER."
|
|---|
| 107 | #'(lambda (x y) (funcall order y x)))
|
|---|
| 108 |
|
|---|
| 109 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 110 | ;;
|
|---|
| 111 | ;; Order making functions
|
|---|
| 112 | ;;
|
|---|
| 113 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|---|
| 114 |
|
|---|
| 115 | (defun make-elimination-order-1 (secondary-elimination-order q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 116 | "Equivalent to the function returned by the call to (ELIMINATION-ORDER PRIMARY-ELIMINATION-ORDER SECONDARY-ELIMINATION-ORDER 1).
|
|---|
| 117 | It is an optimization used for the 1-st elimination ideal. We note that PRIMARY-ELIMINATION-ORDER could be LEX> or any
|
|---|
| 118 | other order, as all orders coincide in 1 variabl."
|
|---|
| 119 | #'(lambda (p q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 120 | (cond
|
|---|
| 121 | ((> (monom-elt p start) (monom-elt q start)) (values t nil))
|
|---|
| 122 | ((< (monom-elt p start) (monom-elt q start)) (values nil nil))
|
|---|
| 123 | (t (funcall secondary-elimination-order p q (1+ start) end)))))
|
|---|
| 124 |
|
|---|
| 125 | (defun make-elimination-order-maker (primary-elimination-order secondary-elimination-order)
|
|---|
| 126 | "Return a function with a single integer argument K. This should be
|
|---|
| 127 | the number of initial K variables X[0],X[1],...,X[K-1], which precede
|
|---|
| 128 | remaining variables. The call to the closure creates a predicate
|
|---|
| 129 | which compares monomials according to the K-th elimination order. The
|
|---|
| 130 | monomial orders PRIMARY-ELIMINATION-ORDER and
|
|---|
| 131 | SECONDARY-ELIMINATION-ORDER are used to compare the first K and the
|
|---|
| 132 | remaining variables, respectively, with ties broken by lexicographical
|
|---|
| 133 | order. That is, if PRIMARY-ELIMINATION-ORDER yields (VALUES NIL T),
|
|---|
| 134 | which indicates that the first K variables appear with identical
|
|---|
| 135 | powers, then the result is that of a call to
|
|---|
| 136 | SECONDARY-ELIMINATION-ORDER applied to the remaining variables
|
|---|
| 137 | X[K],X[K+1],..."
|
|---|
| 138 | #'(lambda (k)
|
|---|
| 139 | (cond
|
|---|
| 140 | ((<= k 0) (error "K must be at least 1"))
|
|---|
| 141 | ((= k 1)
|
|---|
| 142 | (elimination-order-1 secondary-elimination-order))
|
|---|
| 143 | (t
|
|---|
| 144 | #'(lambda (p q &optional (start 0) (end (monom-dimension p)))
|
|---|
| 145 | (multiple-value-bind (primary equal)
|
|---|
| 146 | (funcall primary-elimination-order p q start k)
|
|---|
| 147 | (if equal
|
|---|
| 148 | (funcall secondary-elimination-order p q k end)
|
|---|
| 149 | (values primary nil))))))))
|
|---|
| 150 |
|
|---|