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@ 2433

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

* empty log message *

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