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 | (defpackage "ORDER"
|
---|
23 | (:use :cl :monomial)
|
---|
24 | (:export "LEX>"
|
---|
25 | "GRLEX>"
|
---|
26 | "REVLEX>"
|
---|
27 | "GREVLEX>"
|
---|
28 | "INVLEX>"))
|
---|
29 |
|
---|
30 | (in-package :order)
|
---|
31 |
|
---|
32 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
33 | ;;
|
---|
34 | ;; Implementations of various admissible monomial orders
|
---|
35 | ;;
|
---|
36 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
37 |
|
---|
38 | ;; pure lexicographic
|
---|
39 | (defun lex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
40 | "Return T if P>Q with respect to lexicographic order, otherwise NIL.
|
---|
41 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
42 | (declare (type monom p q) (type fixnum start end))
|
---|
43 | (do ((i start (1+ i)))
|
---|
44 | ((>= i end) (values nil t))
|
---|
45 | (declare (type fixnum i))
|
---|
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 | (declare (type monom p q) (type fixnum start end))
|
---|
57 | (let ((d1 (monom-total-degree p start end))
|
---|
58 | (d2 (monom-total-degree q start end)))
|
---|
59 | (cond
|
---|
60 | ((> d1 d2) (values t nil))
|
---|
61 | ((< d1 d2) (values nil nil))
|
---|
62 | (t
|
---|
63 | (lex> p q start end)))))
|
---|
64 |
|
---|
65 |
|
---|
66 | ;; total degree, ties broken by reverse lexicographic
|
---|
67 | (defun grevlex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
68 | "Return T if P>Q with respect to graded reverse lexicographic order,
|
---|
69 | NIL otherwise. The second returned value is T if P=Q, otherwise it is NIL."
|
---|
70 | (declare (type monom p q) (type fixnum start end))
|
---|
71 | (let ((d1 (monom-total-degree p start end))
|
---|
72 | (d2 (monom-total-degree q start end)))
|
---|
73 | (cond
|
---|
74 | ((> d1 d2) (values t nil))
|
---|
75 | ((< d1 d2) (values nil nil))
|
---|
76 | (t
|
---|
77 | (revlex> p q start end)))))
|
---|
78 |
|
---|
79 |
|
---|
80 | ;; reverse lexicographic
|
---|
81 | (defun revlex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
82 | "Return T if P>Q with respect to reverse lexicographic order, NIL
|
---|
83 | otherwise. The second returned value is T if P=Q, otherwise it is
|
---|
84 | NIL. This is not and admissible monomial order because some sets do
|
---|
85 | not have a minimal element. This order is useful in constructing other
|
---|
86 | orders."
|
---|
87 | (declare (type monom p q) (type fixnum start end))
|
---|
88 | (do ((i (1- end) (1- i)))
|
---|
89 | ((< i start) (values nil t))
|
---|
90 | (declare (type fixnum i))
|
---|
91 | (cond
|
---|
92 | ((< (monom-elt p i) (monom-elt q i))
|
---|
93 | (return-from revlex> (values t nil)))
|
---|
94 | ((> (monom-elt p i) (monom-elt q i))
|
---|
95 | (return-from revlex> (values nil nil))))))
|
---|
96 |
|
---|
97 |
|
---|
98 | (defun invlex> (p q &optional (start 0) (end (monom-dimension p)))
|
---|
99 | "Return T if P>Q with respect to inverse lexicographic order, NIL otherwise
|
---|
100 | The second returned value is T if P=Q, otherwise it is NIL."
|
---|
101 | (declare (type monom p q) (type fixnum start end))
|
---|
102 | (do ((i (1- end) (1- i)))
|
---|
103 | ((< i start) (values nil t))
|
---|
104 | (declare (type fixnum i))
|
---|
105 | (cond
|
---|
106 | ((> (monom-elt p i) (monom-elt q i))
|
---|
107 | (return-from invlex> (values t nil)))
|
---|
108 | ((< (monom-elt p i) (monom-elt q i))
|
---|
109 | (return-from invlex> (values nil nil))))))
|
---|