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/5am-monom.lisp@ 4046

Last change on this file since 4046 was 4046, checked in by Marek Rychlik, 8 years ago

* empty log message *

File size: 7.7 KB
RevLine 
[2127]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
[3775]40;; Unless NGROBNER system loaded by ASDF,
41;; load the dependencies directly
[3774]42#-ngrobner
43(progn
44 (require :copy "copy")
45 (require :monom "monom"))
[2127]46
47(defpackage #:5am-monom
[3462]48 (:use :cl :it.bese.fiveam :monom :copy)
[2640]49 (:documentation "Monom and derived classes tests"))
[2127]50
51(in-package :5am-monom)
52
53(def-suite monom-suite
54 :description "Monom package suite")
55
56(in-suite monom-suite)
57
[2308]58(def-fixture monom-context ()
[2829]59 ;; Use SYMBOL-MACROLET not let to avoid 'unused variable' complaints
[2841]60 (symbol-macrolet
[3320]61 ((m (make-instance 'monom :exponents '(1 2 3)))
62 (n (make-instance 'monom :exponents '(4 5 6)))
63 (m*n (make-instance 'monom :exponents '(5 7 9)))
64 (n/m (make-instance 'monom :exponents '(3 3 3)))
[2841]65 (m-tensor-n (make-instance 'monom :exponents '(1 2 3 4 5 6))))
[2308]66 (&body)))
[2299]67
[2302]68(test monom-basics
[2306]69 "Monom basics"
[2308]70 (with-fixture monom-context ()
[3463]71 (is (= (monom-dimension m) 3))
72 (is (= (monom-elt m 2) 3))
[3593]73 (is (= (total-degree m) 6))
74 (is (= (sugar m) 6))
[3609]75 (is (equalp (->list (make-instance 'monom :dimension 3)) '(0 0 0)) "Trivial monomial is a vector of 0's")
[3593]76 (is (universal-equalp (multiply-2 m n) m*n))
77 (is (universal-equalp (divide-by n m) n/m))
78 (is (universal-equalp (right-tensor-product-by m n) m-tensor-n))
[2183]79 (signals
[2400]80 (error "EXPONENTS must have length DIMENSION")
[2291]81 (make-instance 'monom :dimension 3 :exponents '(1 2 3 4 5 6)))
[3593]82 (is-true (divides-p m n))
83 (is-false (divides-p n m))
84 (is (universal-equalp (universal-gcd m n) m))
85 (is (universal-equalp (universal-lcm m n) n))
86 (is-true (depends-p m 0))
[2290]87 (signals
88 (error "Index out of bounds")
[3593]89 (depends-p m 3))
[2821]90 )
91 (with-fixture monom-context ()
[3593]92 (is (universal-equalp (multiply-by m n) m*n)))
[2821]93 (with-fixture monom-context ()
[3593]94 (is (universal-equalp (divide-by n m) n/m)))
[3467]95 (with-fixture monom-context ()
[3609]96 (is (equal (->list m) '(1 2 3)))))
[2127]97
[3479]98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
99;;
100;; Order generics (LEX>, GRLEX>,...) tests
101;;
102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
103
104(def-fixture order-context ()
105 (symbol-macrolet
106 ((p (make-instance 'monom :exponents '(1 3 2)))
107 (q (make-instance 'monom :exponents '(1 2 3))))
108 (&body)))
109
110(test order
111 "order"
112 (with-fixture order-context ()
113 (is-true (lex> p q))
114 (is-true (grlex> p q))
115 (is-true (revlex> p q))
116 (is-true (grevlex> p q))
117 (is-false (invlex> p q))))
118
119(def-fixture elim-order-context ()
120 (let* ((p (make-instance 'monom :exponents '(1 2 3)))
121 (q (make-instance 'monom :exponents '(4 5 6)))
122 (elim-order-factory (make-elimination-order-factory))
123 (elim-order-1 (funcall elim-order-factory 1))
124 (elim-order-2 (funcall elim-order-factory 2)))
125 (&body)))
126
127
128(test elim-order
129 "Elimination order"
130 (with-fixture elim-order-context ()
131 (is-false (funcall elim-order-1 p q))
132 (is-false (funcall elim-order-2 p q))))
133
[3597]134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
135;;
136;; TERM class tests
137;;
138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
139
140(def-fixture term-context ()
141 (symbol-macrolet
142 ((z (make-instance 'term :dimension 3 :coeff 5))
143 (m (make-instance 'term :dimension 3 :exponents '(1 2 3) :coeff 6))
144 (n (make-instance 'term :dimension 3 :exponents '(4 5 6) :coeff 12))
145 (m*n (make-instance 'term :dimension 3 :exponents '(5 7 9) :coeff 72))
146 (n/m (make-instance 'term :dimension 3 :exponents '(3 3 3) :coeff 2))
147 (m-tensor-n (make-instance 'term :exponents '(1 2 3 4 5 6) :coeff 72))
148 (m-uminus (make-instance 'term :dimension 3 :exponents '(1 2 3) :coeff -6)))
149 (&body)))
150
151(test term-basics
152 "Term basics"
153 (with-fixture term-context ()
[3598]154 (is (= (monom-dimension m) 3))
155 (is (= (monom-elt m 2) 3))
[3603]156 (is (= (total-degree m) 6))
157 (is (= (sugar m) 6))
[4046]158 (is (equalp (->list z) '((0 0 0 5))) "Trivial term is a vector of 0's")
[3598]159 (is (universal-equalp (multiply m n) m*n))
160 (is (universal-equalp (divide n m) n/m))
161 (is (universal-equalp (right-tensor-product-by m n) m-tensor-n))
[3597]162 (signals
163 (error "EXPONENTS must have length DIMENSION")
164 (make-instance 'term :dimension 3 :exponents '(1 2 3 4 5 6) :coeff 77))
[3598]165 (is-true (divides-p m n))
166 (is-false (divides-p n m))
[3604]167 (is (universal-equalp (universal-gcd m n) m))
168 (is (universal-equalp (universal-lcm m n) n))
[3598]169 (is-true (depends-p m 0))
[3597]170 (signals
171 (error "Index out of bounds")
[3598]172 (depends-p m 3))
[3597]173 )
174 (with-fixture term-context ()
[3598]175 (is (universal-equalp (multiply-by m n) m*n)))
[3597]176 (with-fixture term-context ()
[3598]177 (is (universal-equalp (divide-by n m) n/m)))
[3597]178 (with-fixture term-context ()
[3598]179 (is (universal-equalp (unary-minus m) m-uminus))))
[3597]180
181
182(def-fixture monom/term-conversion-context ()
183 (symbol-macrolet
184 ((term (make-instance 'term :exponents '(1 2 3) :coeff 4))
185 (monom (make-instance 'monom :exponents '(1 2 3)))
186 (promoted-monom (make-instance 'term :exponents '(1 2 3) :coeff 1)))
187 (&body)))
188
189(test monom/term-conversion
190 "Monom/term conversion"
191 (with-fixture monom/term-conversion-context ()
[3598]192 (is (universal-equalp (change-class term 'monom) monom)))
[3597]193 (with-fixture monom/term-conversion-context ()
[3598]194 (is (universal-equalp (change-class monom 'term) promoted-monom))))
[3597]195
196(test monom/term-copy
197 "Monom/term copy"
198 (with-fixture monom/term-conversion-context ()
[3598]199 (is (universal-equalp (copy-instance monom) monom))
[3601]200 (is (universal-equalp (copy-instance term) term))))
[3597]201
202(test term-tensor-product
203 "Term tensor product"
204 (let ((term1 (make-instance 'term :exponents '(1 2 3) :coeff 4))
205 (term2 (make-instance 'term :exponents '(4 5) :coeff 3))
206 (term1-left-tensor-by-term2 (make-instance 'term :exponents '(4 5 1 2 3) :coeff 12)))
[3598]207 (is (universal-equalp (left-tensor-product-by term1 term2) term1-left-tensor-by-term2))))
[3597]208
209(test term-contract
210 "Term contract"
211 (let ((term (make-instance 'term :exponents '(1 2 3) :coeff 4))
212 (term-contracted (make-instance 'term :exponents '(2 3) :coeff 4)))
[3598]213 (is (universal-equalp (left-contract term 1) term-contracted))))
[3597]214
[2127]215(run! 'monom-suite)
216(format t "All tests done!~%")
217
218
Note: See TracBrowser for help on using the repository browser.