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

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

* empty log message *

File size: 3.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(require :utils "utils")
41(require :monom "monom")
42(require :polynomial "polynomial")
43(require :infix "infix")
44(require :symbolic-polynomial "symbolic-polynomial")
45
46(defpackage #:5am-symbolic-poly
47 (:use :cl :it.bese.fiveam :ring :monom :term :order :polynomial :infix :symbolic-polynomial))
48
49(in-package :5am-symbolic-poly)
50
51(def-suite symbolic-poly-suite
52 :description "Symbolic polynomial package suite")
53
54(in-suite symbolic-poly-suite)
55
56(test read-infix-form
57 "Infix form reader"
58 (is (equalp (with-input-from-string (s "X^2-Y^2+(-4/3)*U^2*W^3-5") (read-infix-form :stream s))
59 '(+ (- (EXPT X 2) (EXPT Y 2)) (* (- (/ 4 3)) (EXPT U 2) (EXPT W 3)) (- 5))))
60 (is (equalp (string->poly "X^2-Y^2+(-4/3)*U^2*W^3-5" '(x y u w))
61 7)))
62
63(def-fixture sym-poly-context ()
64 (let ((p (make-instance 'poly))
65 (p-symbolic (make-instance 'symbolic-poly :vars '(x))))
66 (dolist (x '( ((2) . 22) ((4) . 44) ((5) . 55) ((8) . 88) ((9) . 99) ))
67 (insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x)))
68 (insert-item p-symbolic (make-instance 'term :exponents (car x) :coeff (cdr x))))
69 (&body)))
70
71(test sym-poly
72 "Symbolic polynomial"
73 (with-fixture sym-poly-context ()
74 (is (r-equalp (change-class p 'symbolic-poly :vars '(x)) p-symbolic )))
75 (with-fixture sym-poly-context ()
76 (signals
77 (error "Number of variables does not equal dimension.")
78 (r-equalp (change-class p 'symbolic-poly :vars '(x y)) p-symbolic ))))
79
80
81(run! 'symbolic-poly-suite)
82(format t "All tests done!~%")
83
84
Note: See TracBrowser for help on using the repository browser.