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.

source: branches/f4grobner/order.lisp@ 1929

Last change on this file since 1929 was 1929, checked in by Marek Rychlik, 9 years ago

* empty log message *

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