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 | ;; Run tests using 5am unit testing framework
|
---|
25 | ;;
|
---|
26 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
27 |
|
---|
28 | ;; We assume that QuickLisp package manager is installed.
|
---|
29 | ;; See :
|
---|
30 | ;; https://www.quicklisp.org/beta/
|
---|
31 | ;;
|
---|
32 |
|
---|
33 | ;; The following is unnecessary after running:
|
---|
34 | ;; * (ql:add-to-init-file)
|
---|
35 | ;; at lisp prompt:
|
---|
36 | ;;(load "~/quicklisp/setup")
|
---|
37 |
|
---|
38 | (ql:quickload :fiveam)
|
---|
39 |
|
---|
40 | (defpackage #:5am-monom
|
---|
41 | (:use :cl :it.bese.fiveam :monom :copy :ring)
|
---|
42 | (:documentation "Monom and derived classes tests"))
|
---|
43 |
|
---|
44 | (in-package :5am-monom)
|
---|
45 |
|
---|
46 | (def-suite monom-suite
|
---|
47 | :description "Monom package suite")
|
---|
48 |
|
---|
49 | (in-suite monom-suite)
|
---|
50 |
|
---|
51 | (def-fixture monom-context ()
|
---|
52 | ;; Use SYMBOL-MACROLET not let to avoid 'unused variable' complaints
|
---|
53 | (symbol-macrolet
|
---|
54 | ((m (make-instance 'monom :exponents '(1 2 3)))
|
---|
55 | (n (make-instance 'monom :exponents '(4 5 6)))
|
---|
56 | (m*n (make-instance 'monom :exponents '(5 7 9)))
|
---|
57 | (n/m (make-instance 'monom :exponents '(3 3 3)))
|
---|
58 | (m-tensor-n (make-instance 'monom :exponents '(1 2 3 4 5 6))))
|
---|
59 | (&body)))
|
---|
60 |
|
---|
61 | (test monom-basics
|
---|
62 | "Monom basics"
|
---|
63 | (with-fixture monom-context ()
|
---|
64 | (is (= (monom-dimension m) 3))
|
---|
65 | (is (= (monom-elt m 2) 3))
|
---|
66 | (is (= (total-degree m) 6))
|
---|
67 | (is (= (sugar m) 6))
|
---|
68 | (is (equalp (->list (make-instance 'monom :dimension 3)) '(0 0 0)) "Trivial monomial is a vector of 0's")
|
---|
69 | (is (universal-equalp (multiply m n) m*n))
|
---|
70 | (is (universal-equalp (divide-by n m) n/m))
|
---|
71 | (is (universal-equalp (right-tensor-product-by m n) m-tensor-n))
|
---|
72 | (signals
|
---|
73 | (error "EXPONENTS must have length DIMENSION")
|
---|
74 | (make-instance 'monom :dimension 3 :exponents '(1 2 3 4 5 6)))
|
---|
75 | (is-true (divides-p m n))
|
---|
76 | (is-false (divides-p n m))
|
---|
77 | (is (universal-equalp (universal-gcd m n) m))
|
---|
78 | (is (universal-equalp (universal-lcm m n) n))
|
---|
79 | (is-true (depends-p m 0))
|
---|
80 | (signals
|
---|
81 | (error "Index out of bounds")
|
---|
82 | (depends-p m 3))
|
---|
83 | )
|
---|
84 | (with-fixture monom-context ()
|
---|
85 | (is (universal-equalp (multiply-by m n) m*n)))
|
---|
86 | (with-fixture monom-context ()
|
---|
87 | (is (universal-equalp (divide-by n m) n/m)))
|
---|
88 | (with-fixture monom-context ()
|
---|
89 | (is (equal (->list m) '(1 2 3)))))
|
---|
90 |
|
---|
91 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
92 | ;;
|
---|
93 | ;; Order generics (LEX>, GRLEX>,...) tests
|
---|
94 | ;;
|
---|
95 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
96 |
|
---|
97 | (def-fixture order-context ()
|
---|
98 | (symbol-macrolet
|
---|
99 | ((p (make-instance 'monom :exponents '(1 3 2)))
|
---|
100 | (q (make-instance 'monom :exponents '(1 2 3))))
|
---|
101 | (&body)))
|
---|
102 |
|
---|
103 | (test order
|
---|
104 | "order"
|
---|
105 | (with-fixture order-context ()
|
---|
106 | (is-true (lex> p q))
|
---|
107 | (is-true (grlex> p q))
|
---|
108 | (is-true (revlex> p q))
|
---|
109 | (is-true (grevlex> p q))
|
---|
110 | (is-false (invlex> p q))))
|
---|
111 |
|
---|
112 | (def-fixture elim-order-context ()
|
---|
113 | (let* ((p (make-instance 'monom :exponents '(1 2 3)))
|
---|
114 | (q (make-instance 'monom :exponents '(4 5 6)))
|
---|
115 | (elim-order-factory (make-elimination-order-factory))
|
---|
116 | (elim-order-1 (funcall elim-order-factory 1))
|
---|
117 | (elim-order-2 (funcall elim-order-factory 2)))
|
---|
118 | (&body)))
|
---|
119 |
|
---|
120 |
|
---|
121 | (test elim-order
|
---|
122 | "Elimination order"
|
---|
123 | (with-fixture elim-order-context ()
|
---|
124 | (is-false (funcall elim-order-1 p q))
|
---|
125 | (is-false (funcall elim-order-2 p q))))
|
---|
126 |
|
---|
127 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
128 | ;;
|
---|
129 | ;; TERM class tests
|
---|
130 | ;;
|
---|
131 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
---|
132 |
|
---|
133 | (def-fixture term-context ()
|
---|
134 | (symbol-macrolet
|
---|
135 | ((z (make-instance 'term :dimension 3 :coeff 5))
|
---|
136 | (m (make-instance 'term :dimension 3 :exponents '(1 2 3) :coeff 6))
|
---|
137 | (n (make-instance 'term :dimension 3 :exponents '(4 5 6) :coeff 12))
|
---|
138 | (m*n (make-instance 'term :dimension 3 :exponents '(5 7 9) :coeff 72))
|
---|
139 | (n/m (make-instance 'term :dimension 3 :exponents '(3 3 3) :coeff 2))
|
---|
140 | (m-tensor-n (make-instance 'term :exponents '(1 2 3 4 5 6) :coeff 72))
|
---|
141 | (m-uminus (make-instance 'term :dimension 3 :exponents '(1 2 3) :coeff -6)))
|
---|
142 | (&body)))
|
---|
143 |
|
---|
144 | (test term-basics
|
---|
145 | "Term basics"
|
---|
146 | (with-fixture term-context ()
|
---|
147 | (is (= (monom-dimension m) 3))
|
---|
148 | (is (= (monom-elt m 2) 3))
|
---|
149 | (is (= (total-degree m) 6))
|
---|
150 | (is (= (sugar m) 6))
|
---|
151 | (is (equalp (->list z) '((0 0 0) . 5)) "Trivial term is a vector of 0's")
|
---|
152 | (is (universal-equalp (multiply m n) m*n))
|
---|
153 | (is (universal-equalp (divide n m) n/m))
|
---|
154 | (is (universal-equalp (right-tensor-product-by m n) m-tensor-n))
|
---|
155 | (signals
|
---|
156 | (error "EXPONENTS must have length DIMENSION")
|
---|
157 | (make-instance 'term :dimension 3 :exponents '(1 2 3 4 5 6) :coeff 77))
|
---|
158 | (is-true (divides-p m n))
|
---|
159 | (is-false (divides-p n m))
|
---|
160 | (is (universal-equalp (universal-gcd m n) m))
|
---|
161 | (is (universal-equalp (universal-lcm m n) n))
|
---|
162 | (is-true (depends-p m 0))
|
---|
163 | (signals
|
---|
164 | (error "Index out of bounds")
|
---|
165 | (depends-p m 3))
|
---|
166 | )
|
---|
167 | (with-fixture term-context ()
|
---|
168 | (is (universal-equalp (multiply-by m n) m*n)))
|
---|
169 | (with-fixture term-context ()
|
---|
170 | (is (universal-equalp (divide-by n m) n/m)))
|
---|
171 | (with-fixture term-context ()
|
---|
172 | (is (universal-equalp (unary-minus m) m-uminus))))
|
---|
173 |
|
---|
174 |
|
---|
175 | (def-fixture monom/term-conversion-context ()
|
---|
176 | (symbol-macrolet
|
---|
177 | ((term (make-instance 'term :exponents '(1 2 3) :coeff 4))
|
---|
178 | (monom (make-instance 'monom :exponents '(1 2 3)))
|
---|
179 | (promoted-monom (make-instance 'term :exponents '(1 2 3) :coeff 1)))
|
---|
180 | (&body)))
|
---|
181 |
|
---|
182 | (test monom/term-conversion
|
---|
183 | "Monom/term conversion"
|
---|
184 | (with-fixture monom/term-conversion-context ()
|
---|
185 | (is (universal-equalp (change-class term 'monom) monom)))
|
---|
186 | (with-fixture monom/term-conversion-context ()
|
---|
187 | (is (universal-equalp (change-class monom 'term) promoted-monom))))
|
---|
188 |
|
---|
189 | (test monom/term-copy
|
---|
190 | "Monom/term copy"
|
---|
191 | (with-fixture monom/term-conversion-context ()
|
---|
192 | (is (universal-equalp (copy-instance monom) monom))
|
---|
193 | (is (universal-equalp (copy-instance term) term))))
|
---|
194 |
|
---|
195 | (test term-tensor-product
|
---|
196 | "Term tensor product"
|
---|
197 | (let ((term1 (make-instance 'term :exponents '(1 2 3) :coeff 4))
|
---|
198 | (term2 (make-instance 'term :exponents '(4 5) :coeff 3))
|
---|
199 | (term1-left-tensor-by-term2 (make-instance 'term :exponents '(4 5 1 2 3) :coeff 12)))
|
---|
200 | (is (universal-equalp (left-tensor-product-by term1 term2) term1-left-tensor-by-term2))))
|
---|
201 |
|
---|
202 | (test term-contract
|
---|
203 | "Term contract"
|
---|
204 | (let ((term (make-instance 'term :exponents '(1 2 3) :coeff 4))
|
---|
205 | (term-contracted (make-instance 'term :exponents '(2 3) :coeff 4)))
|
---|
206 | (is (universal-equalp (left-contract term 1) term-contracted))))
|
---|
207 |
|
---|
208 | (test sexp-conversion
|
---|
209 | "Sexp conversion"
|
---|
210 | (is (equal (->sexp (make-instance 'term :exponents '(0 0 0 0) :coeff -5) '(x y u v)) -5))
|
---|
211 | (signals (error "Variables NIL and exponents #(0 0 0 0) must have the same length.")
|
---|
212 | (->sexp (make-instance 'monom :exponents '(0 0 0 0))))
|
---|
213 | (is (equal (->sexp (make-instance 'monom :exponents '(0 0 0 0)) '(x y u w)) 1))
|
---|
214 | (is (equal (->sexp (make-instance 'monom :exponents '(0 0 1 0)) '(x y u w)) 'u))
|
---|
215 | (is (equalp (->sexp (make-instance 'monom :exponents '(1 2 1 1)) '(x y u w))
|
---|
216 | '(* X (EXPT Y 2) U W)))
|
---|
217 | (is (equal (->sexp (make-instance 'term :exponents '(0 1 0 0) :coeff -5) '(x y u v))
|
---|
218 | '(* -5 Y)))
|
---|
219 | (is (equal (->sexp (make-instance 'term :exponents '(1 1 0 0) :coeff -5) '(x y u v))
|
---|
220 | '(* -5 X Y)))
|
---|
221 | (is (equal (->sexp (make-instance 'term :exponents '(1 0 0 0) :coeff -5) '(x y u v))
|
---|
222 | '(* -5 X)))
|
---|
223 | (is (equal (->sexp (make-instance 'term :exponents '(11 0 0 0) :coeff -5) '(x y u v))
|
---|
224 | '(* -5 (EXPT X 11))))
|
---|
225 | (is (equal (->sexp (make-instance 'term :exponents '(11 0 0 0) :coeff 5) '(x y u v))
|
---|
226 | '(* 5 (EXPT X 11))))
|
---|
227 | (is (equal (->sexp (make-instance 'term :exponents '(11 0 4 0) :coeff 5) '(x y u v))
|
---|
228 | '(* 5 (EXPT X 11) (EXPT U 4))))
|
---|
229 | )
|
---|
230 |
|
---|
231 | (run! 'monom-suite)
|
---|
232 | (format t "All tests done!~%")
|
---|
233 |
|
---|
234 |
|
---|