| 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 :ring "ring")
 | 
|---|
| 42 | (require :monom "monom")
 | 
|---|
| 43 | (require :term "term")
 | 
|---|
| 44 | (require :order "order")
 | 
|---|
| 45 | (require :infix "infix")
 | 
|---|
| 46 | (require :polynomial "polynomial")
 | 
|---|
| 47 | (require :symbolic-polynomial "symbolic-polynomial")
 | 
|---|
| 48 | 
 | 
|---|
| 49 | (defpackage #:5am-symbolic-poly
 | 
|---|
| 50 |   (:use :cl :it.bese.fiveam :ring :monom :term :order :polynomial :symbolic-polynomial))
 | 
|---|
| 51 | 
 | 
|---|
| 52 | (in-package :5am-symbolic-poly)
 | 
|---|
| 53 | 
 | 
|---|
| 54 | (def-suite symbolic-poly-suite 
 | 
|---|
| 55 |     :description "Symbolic polynomial package suite")
 | 
|---|
| 56 | 
 | 
|---|
| 57 | (in-suite symbolic-poly-suite)
 | 
|---|
| 58 | 
 | 
|---|
| 59 | (def-fixture sym-poly-context ()
 | 
|---|
| 60 |   (let ((p (make-instance 'poly))
 | 
|---|
| 61 |         (p-symbolic (make-instance 'symbolic-poly :vars '(x))))
 | 
|---|
| 62 |     (dolist (x '( ((2) . 22)  ((4) . 44) ((5) . 55) ((8) . 88) ((9) . 99) ))
 | 
|---|
| 63 |       (insert-item p (make-instance 'term :exponents (car x) :coeff (cdr x)))
 | 
|---|
| 64 |       (insert-item p-symbolic (make-instance 'term :exponents (car x) :coeff (cdr x))))
 | 
|---|
| 65 |     (&body)))
 | 
|---|
| 66 | 
 | 
|---|
| 67 | (test sym-poly
 | 
|---|
| 68 |   "Symbolic polynomial"
 | 
|---|
| 69 |   (with-fixture sym-poly-context ()
 | 
|---|
| 70 |     (is (r-equalp (change-class p 'symbolic-poly :vars '(x)) p-symbolic )))
 | 
|---|
| 71 |   (with-fixture sym-poly-context ()
 | 
|---|
| 72 |     (signals
 | 
|---|
| 73 |         (error "Number of variables does not equal dimension.")
 | 
|---|
| 74 |       (r-equalp (change-class p 'symbolic-poly :vars '(x y)) p-symbolic ))))
 | 
|---|
| 75 | 
 | 
|---|
| 76 | 
 | 
|---|
| 77 | (run! 'symbolic-poly-suite)
 | 
|---|
| 78 | (format t "All tests done!~%")
 | 
|---|
| 79 | 
 | 
|---|
| 80 | 
 | 
|---|