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-poly.lisp@ 3757

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

* empty log message *

File size: 8.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;; 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;; Load system ngrobner via ASD
41(unwind-protect
42 (progn
43 (require :asdf)
44 (load "ngrobner.asd")
45 (asdf:load-system :ngrobner))
46 ;; Or load manually
47 (require :copy "copy")
48 (require :monom "monom")
49 (require :utils "utils")
50 (require :polynomial "polynomial"))
51
52(defpackage #:5am-poly
53 (:use :cl :it.bese.fiveam :monom :polynomial))
54
55(in-package :5am-poly)
56
57(def-suite poly-suite
58 :description "Polynomial package suite")
59
60(in-suite poly-suite)
61
62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
63;;
64;; POLY class tests
65;;
66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
67
68(def-fixture poly-add-context ()
69 (let ((p (make-instance 'poly))
70 (q (make-instance 'poly :order nil))
71 (p+q (make-instance 'poly))
72 (p-q (make-instance 'poly))
73 (p-uminus (make-instance 'poly)))
74 ;; Populate the polynomials; the lists of (exponents . coefficient) pairs
75 ;; must be in increasing order in Q, but Q is unordered (:ORDER NIL)
76 ;; so it will be automatically sorted.
77 (dolist (x '( ((2) . 22) ((4) . 44) ((5) . 55) ((8) . 88) ((9) . 99) ))
78 (poly-insert-term p (make-instance 'term :exponents (car x) :coeff (cdr x))))
79 (dolist (x '( ((9) . 90) ((0) . 11) ((2) . 20) ((3) . 33) ((4) . -44) ((7) . 77) ((8) . 88) ))
80 (poly-insert-term q (make-instance 'term :exponents (car x) :coeff (cdr x))))
81 ;; P+Q
82 (dolist (x '(((0) . 11) ((2) . 42) ((3) . 33) ((5) . 55) ((7) . 77) ((8) . 176) ((9) . 189) ))
83 (poly-insert-term p+q (make-instance 'term :exponents (car x) :coeff (cdr x))))
84 ;; P-Q
85 (dolist (x '(((0) . -11) ((2) . 2) ((3) . -33) ((4) . 88) ((5) . 55) ((7) . -77) ((9) . 9)))
86 (poly-insert-term p-q (make-instance 'term :exponents (car x) :coeff (cdr x))))
87 ;; -P
88 (dolist (x '( ((2) . -22) ((4) . -44) ((5) . -55) ((8) . -88) ((9) . -99)))
89 (poly-insert-term p-uminus (make-instance 'term :exponents (car x) :coeff (cdr x))))
90 ;;(print p) (print q) (print p+q) (print p-q)
91 (&body)))
92
93(test poly-add
94 "Polynomial addition"
95 (with-fixture poly-add-context () (is (universal-equalp (add-to p q) p+q)))
96 (with-fixture poly-add-context () (is (universal-equalp (add p q) p+q)))
97 (with-fixture poly-add-context () (is (universal-equalp (subtract-from p q) p-q)))
98 (with-fixture poly-add-context () (is (universal-equalp (subtract p q) p-q)))
99 (with-fixture poly-add-context () (is (universal-equalp (unary-minus p) p-uminus)))
100 )
101
102(def-fixture poly-multiply-context ()
103 (let ((p (make-instance 'poly))
104 (q (make-instance 'poly :order nil))
105 (p*q (make-instance 'poly)))
106 ;; Populate the polynomials; the lists of (exponents . coefficient) pairs
107 ;; must be in increasing order in Q, but Q is unordered (:ORDER NIL)
108 ;; so it will be automatically sorted.
109 (dolist (x '( ((0) . 1) ((1) . 2) ))
110 (poly-insert-term p (make-instance 'term :exponents (car x) :coeff (cdr x))))
111 (dolist (x '( ((0) . 1) ((1) . 3) ))
112 (poly-insert-term q (make-instance 'term :exponents (car x) :coeff (cdr x))))
113 ;; P*Q
114 (dolist (x '( ((0) . 1) ((1) . 5) ((2) . 6)))
115 (poly-insert-term p*q (make-instance 'term :exponents (car x) :coeff (cdr x))))
116 (&body)))
117
118
119(test poly-multiply
120 "Polynomial multiplication"
121 (with-fixture poly-multiply-context () (is (universal-equalp (multiply p q) p*q)))
122 )
123
124(test poly-standard-extension
125 "Standard extension"
126 (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
127 (q (alist->poly '( ((0) . 1) ((2) . 3))))
128 (plist (list p q))
129 (p-ext (alist->poly '( ((1 0 0) . 1) ((1 0 1) . 2))))
130 (q-ext (alist->poly '( ((0 1 0) . 1) ((0 1 2) . 3))))
131 (plist-st-ext (list p-ext q-ext)))
132 (is (universal-equalp (standard-extension plist) plist-st-ext))))
133
134(test poly-standard-extension-1
135 "Standard extension 1"
136 (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
137 (q (alist->poly '( ((0) . 1) ((2) . 3))))
138 (plist (list p q))
139 (p-ext (alist->poly '( ((0 0 0) . -1) ((1 0 0) . 1) ((1 0 1) . 2))))
140 (q-ext (alist->poly '( ((0 0 0) . -1) ((0 1 0) . 1) ((0 1 2) . 3))))
141 (plist-st-ext (list p-ext q-ext)))
142 (is (universal-equalp (standard-extension-1 plist) plist-st-ext))))
143
144(test poly-standard-sum
145 "Standard sum"
146 (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
147 (q (alist->poly '( ((0) . 1) ((2) . 3))))
148 (plist (list p q))
149 (std-sum (alist->poly '(((0 0 0) . -1) ((0 1 0) . 1) ((0 1 2) . 3)
150 ((1 0 0) . 1) ((1 0 1) . 2)))))
151 (is (universal-equalp (standard-sum plist) std-sum))))
152
153(test poly-s-polynomial
154 "S-Polynomial"
155 (let* ((f (alist->poly '( ((1 0 0) . 1) ((1 0 1) . 2)))) ;x+2*x*z |*y*z
156 (g (alist->poly '( ((0 1 0) . 1) ((0 1 2) . 2)))) ;y+2*y*z^2 |*x
157 (s-poly (alist->poly '( ((1 1 0) . -1) ((1 1 1) . 1)))); x*y*z - x*y
158 )
159 (is (universal-equalp (s-polynomial f g) s-poly))))
160
161(test poly-content
162 "Poly-content"
163 (let* ((p (alist->poly '( ((1 0 0) . 12) ((1 0 1) . 15))))
164 (pc 3))
165 (is (universal-equalp (poly-content p) pc))))
166
167(test poly-primitive-part
168 "Poly-primitive-part"
169 (let* ((p (alist->poly '( ((1 0 0) . 12) ((1 0 1) . 15))))
170 (pp (alist->poly '( ((1 0 0) . 4) ((1 0 1) . 5)))))
171 (is (universal-equalp (poly-primitive-part p) pp))))
172
173(test saturation-extension
174 "Saturation-extension"
175 (let* ((f (list (alist->poly '( ((1 0 0) . 2) ((1 0 1) . 3))) ;2*x+3*x*z
176 (alist->poly '( ((1 0 0) . 5) ((0 1 2) . 7)))) ;5*x+7*y*z^2
177 )
178 (p (alist->poly '( ((1 1 1) . 11) ((2 3 4) . 13)))) ;11*x*y*z+13*x^2*y^3*z^4
179 (sat-ext (list (alist->poly '( ((0 1 0 0) . 2) ((0 1 0 1) . 3)))
180 (alist->poly '( ((0 1 0 0) . 5) ((0 0 1 2) . 7)))
181 (alist->poly '( ((0 0 0 0) . -1) ((1 1 1 1) . 11) ((1 2 3 4) . 13) )))))
182 (is (universal-equalp (saturation-extension f (list p)) sat-ext))))
183
184(test saturation-extension-1
185 "Saturation-extension-1"
186 (let* ((f (list (alist->poly '( ((1 0 0) . 2) ((1 0 1) . 3))) ;2*x+3*x*z
187 (alist->poly '( ((1 0 0) . 5) ((0 1 2) . 7)))) ;5*x+7*y*z^2
188 )
189 (p (alist->poly '( ((1 1 1) . 11) ((2 3 4) . 13)))) ;11*x*y*z+13*x^2*y^3*z^4
190 (sat-ext-1 (list (alist->poly '( ((0 1 0 0) . 2) ((0 1 0 1) . 3)))
191 (alist->poly '( ((0 1 0 0) . 5) ((0 0 1 2) . 7)))
192 (alist->poly '( ((0 0 0 0) . -1) ((1 1 1 1) . 11) ((1 2 3 4) . 13) )))))
193 (is (universal-equalp (saturation-extension-1 f p) sat-ext-1))))
194
195(test universal-expt
196 "Universal-expt"
197 (let ((f (alist->poly '( ((0) . 1) ((1) . 1))))
198 (f2 (alist->poly '( ((0) . 1) ((1) . 2) ((2) . 1))))
199 (f3 (alist->poly '( ((0) . 1) ((1) . 3) ((2) . 3) ((3) . 1)))))
200 (is (universal-equalp (universal-expt f 2) f2))
201 (is (universal-equalp (universal-expt f 3) f3))))
202
203(run! 'poly-suite)
204(format t "All tests done!~%")
205
206
Note: See TracBrowser for help on using the repository browser.