forked from melisgl/mgl-gpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmgl-gpr.asd
28 lines (25 loc) · 1.03 KB
/
mgl-gpr.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;;; -*-mode: Lisp; coding: utf-8;-*-
;;; See MGL-GPR:@GPR-MANUAL for the user guide.
(asdf:defsystem :mgl-gpr
:licence "MIT, see COPYING."
:version "0.0.1"
:author "Gábor Melis"
:mailto "[email protected]"
:homepage "http://quotenil.com"
:description "MGL-GPR is a library for genetic programming: evolving
typed expressions for a particular purpose from a set of operators
and constants."
:depends-on (#:mgl-pax)
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "util")
(:file "tree")
(:file "genetic-programming")))))
(defmethod asdf:perform ((o asdf:test-op)
(c (eql (asdf:find-system '#:mgl-gpr))))
(asdf:oos 'asdf:test-op '#:mgl-gpr-test)
(funcall (intern (symbol-name '#:test) (find-package '#:mgl-gpr))))
(defmethod asdf:operation-done-p ((o asdf:test-op)
(c (eql (asdf:find-system '#:mgl-gpr))))
(values nil))