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

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

* empty log message *

File size: 5.7 KB
RevLine 
[2637]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
[3491]40(require :monom "monom")
[3056]41(require :utils "utils")
[2637]42(require :polynomial "polynomial")
43
44(defpackage #:5am-poly
[3492]45 (:use :cl :it.bese.fiveam :monom :polynomial))
[2637]46
47(in-package :5am-poly)
48
[2638]49(def-suite poly-suite
[3226]50 :description "Polynomial package suite")
[2637]51
[2638]52(in-suite poly-suite)
[2637]53
54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
55;;
56;; POLY class tests
57;;
58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
59
[2932]60(def-fixture poly-add-context ()
[3266]61 (let ((p (make-instance 'poly))
[2677]62 (q (make-instance 'poly :order nil))
[2648]63 (p+q (make-instance 'poly))
[2688]64 (p-q (make-instance 'poly))
65 (p-uminus (make-instance 'poly)))
[2671]66 ;; Populate the polynomials; the lists of (exponents . coefficient) pairs
[2678]67 ;; must be in increasing order in Q, but Q is unordered (:ORDER NIL)
68 ;; so it will be automatically sorted.
[2670]69 (dolist (x '( ((2) . 22) ((4) . 44) ((5) . 55) ((8) . 88) ((9) . 99) ))
[2673]70 (insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x))))
[2679]71 (dolist (x '( ((9) . 90) ((0) . 11) ((2) . 20) ((3) . 33) ((4) . -44) ((7) . 77) ((8) . 88) ))
[2672]72 (insert-item q (make-instance 'term :exponents (car x) :coeff (cdr x))))
[2737]73 ;; P+Q
[2734]74 (dolist (x '(((0) . 11) ((2) . 42) ((3) . 33) ((5) . 55) ((7) . 77) ((8) . 176) ((9) . 189) ))
[2672]75 (insert-item p+q (make-instance 'term :exponents (car x) :coeff (cdr x))))
[2737]76 ;; P-Q
[2670]77 (dolist (x '(((0) . -11) ((2) . 2) ((3) . -33) ((4) . 88) ((5) . 55) ((7) . -77) ((9) . 9)))
78 (insert-item p-q (make-instance 'term :exponents (car x) :coeff (cdr x))))
[2737]79 ;; -P
[2687]80 (dolist (x '( ((2) . -22) ((4) . -44) ((5) . -55) ((8) . -88) ((9) . -99) ))
[2686]81 (insert-item p-uminus (make-instance 'term :exponents (car x) :coeff (cdr x))))
[2664]82 ;;(print p) (print q) (print p+q) (print p-q)
[2637]83 (&body)))
84
[2931]85(test poly-add
[2637]86 "Polynomial addition"
[2933]87 (with-fixture poly-add-context () (is (r-equalp (add-to p q) p+q)))
[3378]88 (with-fixture poly-add-context () (is (r-equalp (r+ p q) p+q)))
[2933]89 (with-fixture poly-add-context () (is (r-equalp (subtract-from p q) p-q)))
[3379]90 (with-fixture poly-add-context () (is (r-equalp (r- p q) p-q)))
[2933]91 (with-fixture poly-add-context () (is (r-equalp (unary-minus p) p-uminus)))
[2652]92 )
[2637]93
[2934]94(def-fixture poly-multiply-context ()
[3266]95 (let ((p (make-instance 'poly))
[2934]96 (q (make-instance 'poly :order nil))
97 (p*q (make-instance 'poly)))
98 ;; Populate the polynomials; the lists of (exponents . coefficient) pairs
99 ;; must be in increasing order in Q, but Q is unordered (:ORDER NIL)
100 ;; so it will be automatically sorted.
101 (dolist (x '( ((0) . 1) ((1) . 2) ))
102 (insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x))))
103 (dolist (x '( ((0) . 1) ((1) . 3) ))
[2936]104 (insert-item q (make-instance 'term :exponents (car x) :coeff (cdr x))))
[2934]105 ;; P*Q
106 (dolist (x '( ((0) . 1) ((1) . 5) ((2) . 6)))
107 (insert-item p*q (make-instance 'term :exponents (car x) :coeff (cdr x))))
108 (&body)))
109
110
[2935]111(test poly-multiply
112 "Polynomial multiplication"
[2937]113 (with-fixture poly-multiply-context () (is (r-equalp (r* p q) p*q)))
[2935]114 )
115
[3097]116(test poly-standard-extension
117 "Standard extension"
[3266]118 (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
[3098]119 (q (alist->poly '( ((0) . 1) ((2) . 3))))
[3097]120 (plist (list p q))
121 (p-ext (alist->poly '( ((1 0 0) . 1) ((1 0 1) . 2))))
122 (q-ext (alist->poly '( ((0 1 0) . 1) ((0 1 2) . 3))))
[3098]123 (plist-st-ext (list p-ext q-ext)))
[3097]124 (is (r-equalp (standard-extension plist) plist-st-ext))))
[2935]125
[3102]126(test poly-standard-extension-1
127 "Standard extension 1"
[3266]128 (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
[3102]129 (q (alist->poly '( ((0) . 1) ((2) . 3))))
130 (plist (list p q))
131 (p-ext (alist->poly '( ((0 0 0) . -1) ((1 0 0) . 1) ((1 0 1) . 2))))
132 (q-ext (alist->poly '( ((0 0 0) . -1) ((0 1 0) . 1) ((0 1 2) . 3))))
133 (plist-st-ext (list p-ext q-ext)))
[3103]134 (is (r-equalp (standard-extension-1 plist) plist-st-ext))))
[3102]135
[3111]136(test poly-standard-sum
137 "Standard sum"
[3266]138 (let* ((p (alist->poly '( ((0) . 1) ((1) . 2))))
[3111]139 (q (alist->poly '( ((0) . 1) ((2) . 3))))
140 (plist (list p q))
[3114]141 (std-sum (alist->poly '(((0 0 0) . -1) ((0 1 0) . 1) ((0 1 2) . 3)
142 ((1 0 0) . 1) ((1 0 1) . 2)))))
[3111]143 (is (r-equalp (standard-sum plist) std-sum))))
144
[2638]145(run! 'poly-suite)
[2637]146(format t "All tests done!~%")
147
148
Note: See TracBrowser for help on using the repository browser.