;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; This file is part of "NOVA": NOVA = search + COCOMO tools ; Copyright, 2008, Tim Menzies tim@menzies.us ; ; NOVA is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; ; NOVA is distributed in the hope that it will be useful, ; but WITHOUT ANY WARRANTY; without even the implied warranty of ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; GNU General Public License for more details. ; You should have received a copy of the GNU General Public License ; a long with NOVA. If not, see . ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defun demo-all () "Runs all NOVA unit tests." (demo :sample) (demo :my-random) (demo :line) (demo :geta) (demo :euclidean) (demo :stats) (demo :ttest) (demo :distogram) (demo :macros) (demo :guess) (demo :coco) (demo :effort) (demo :months) (demo :treatments) (demo :constraints)) (defun demo-search (&optional (*debug-search* nil)) "Runs all NOVA search engines." (format t "ISAMP~%") (time (print-paths (isamp :num-runs 3))) (terpri) (format t "MaxWalkSat~%") (time (print-paths (maxwalksat :num-runs 3))) (terpri) (format t "SA~%") (time (print-paths (sa :num-runs 3))) (terpri) (format t "A*~%") (time (print-paths (a-star :num-runs 3))) (terpri) (format t "KEYS~%") (time (print-paths (keys :num-runs 3))) (terpri) (format t "Beam~%") (time (print-paths (beam :num-runs 3))))