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

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

* empty log message *

File size: 6.5 KB
Line 
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 "MONOMIAL-ORDER"
36 "*MONOMIAL-ORDER*"
37 "REVERSE-MONOMIAL-ORDER"
38 "*PRIMARY-ELIMINATION-ORDER*"
39 "*SECONDARY-ELIMINATION-ORDER*"
40 "*ELIMINATION-ORDER*"
41 "ELIMINATION-ORDER"
42 "ELIMINATION-ORDER-1"))
43
44(in-package :order)
45
46;; pure lexicographic
47(defun lex> (p q &optional (start 0) (end (monom-dimension p)))
48 "Return T if P>Q with respect to lexicographic order, otherwise NIL.
49The second returned value is T if P=Q, otherwise it is NIL."
50 (do ((i start (1+ i)))
51 ((>= i end) (values nil t))
52 (declare (type fixnum i))
53 (cond
54 ((> (monom-elt p i) (monom-elt q i))
55 (return-from lex> (values t nil)))
56 ((< (monom-elt p i) (monom-elt q i))
57 (return-from lex> (values nil nil))))))
58
59;; total degree order , ties broken by lexicographic
60(defun grlex> (p q &optional (start 0) (end (monom-dimension p)))
61 "Return T if P>Q with respect to graded lexicographic order, otherwise NIL.
62The second returned value is T if P=Q, otherwise it is NIL."
63 (let ((d1 (monom-total-degree p start end))
64 (d2 (monom-total-degree q start end)))
65 (cond
66 ((> d1 d2) (values t nil))
67 ((< d1 d2) (values nil nil))
68 (t
69 (lex> p q start end)))))
70
71
72;; reverse lexicographic
73(defun revlex> (p q &optional (start 0) (end (monom-dimension p)))
74 "Return T if P>Q with respect to reverse lexicographic order, NIL
75otherwise. The second returned value is T if P=Q, otherwise it is
76NIL. This is not and admissible monomial order because some sets do
77not have a minimal element. This order is useful in constructing other
78orders."
79 (do ((i (1- end) (1- i)))
80 ((< i start) (values nil t))
81 (declare (type fixnum i))
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
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,
92NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL."
93 (let ((d1 (monom-total-degree p start end))
94 (d2 (monom-total-degree q start end)))
95 (cond
96 ((> d1 d2) (values t nil))
97 ((< d1 d2) (values nil nil))
98 (t
99 (revlex> p q start end)))))
100
101(defun invlex> (p q &optional (start 0) (end (monom-dimension p)))
102 "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise
103The second returned value is T if P=Q, otherwise it is NIL."
104 (do ((i (1- end) (1- i)))
105 ((< i start) (values nil t))
106 (declare (type fixnum i))
107 (cond
108 ((> (monom-elt p i) (monom-elt q i))
109 (return-from invlex> (values t nil)))
110 ((< (monom-elt p i) (monom-elt q i))
111 (return-from invlex> (values nil nil))))))
112
113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
114;;
115;; Some globally-defined variables holding monomial orders
116;; and related macros/functions.
117;;
118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
119
120(defvar *monomial-order* #'lex>
121 "Default order for monomial comparisons. This global variable holds
122the order which is in effect when performing polynomial
123arithmetic. The global order is called by the macro MONOMIAL-ORDER,
124which is somewhat more elegant than FUNCALL.")
125
126(defun monomial-order (x y)
127 "Calls the global monomial order function, held by *MONOMIAL-ORDER*."
128 (funcall *monomial-order* x y))
129
130(defun reverse-monomial-order (x y)
131 "Calls the inverse monomial order to the global monomial order function,
132held by *MONOMIAL-ORDER*."
133 (monomial-order y x))
134
135(defvar *primary-elimination-order* #'lex>)
136
137(defvar *secondary-elimination-order* #'lex>)
138
139(defvar *elimination-order* nil
140 "Default elimination order used in elimination-based functions.
141If not NIL, it is assumed to be a proper elimination order. If NIL,
142we will construct an elimination order using the values of
143*PRIMARY-ELIMINATION-ORDER* and *SECONDARY-ELIMINATION-ORDER*.")
144
145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
146;;
147;; Order making functions
148;;
149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
150
151(defun elimination-order (k)
152 "Return a predicate which compares monomials according to the
153K-th elimination order. Two variables *PRIMARY-ELIMINATION-ORDER*
154and *SECONDARY-ELIMINATION-ORDER* control the behavior on the first K
155and the remaining variables, respectively."
156 #'(lambda (p q &optional (start 0) (end (monom-dimension p)))
157 (multiple-value-bind (primary equal)
158 (funcall *primary-elimination-order* p q start k)
159 (if equal
160 (funcall *secondary-elimination-order* p q k end)
161 (values primary nil)))))
162
163(defun elimination-order-1 (p q &optional (start 0) (end (monom-dimension p)))
164 "Equivalent to the function returned by the call to (ELIMINATION-ORDER 1)."
165 (cond
166 ((> (monom-elt p start) (monom-elt q start)) (values t nil))
167 ((< (monom-elt p start) (monom-elt q start)) (values nil nil))
168 (t (funcall *secondary-elimination-order* p q (1+ start) end))))
Note: See TracBrowser for help on using the repository browser.