-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclover.asd
75 lines (73 loc) · 2.31 KB
/
clover.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#|
This file is a part of clover project.
Copyright (c) 2018 moratori
|#
#|
Author: moratori
|#
(defsystem "clover"
:version "2.6.1"
:author "moratori"
:license "LLGPL"
:depends-on (:cl-cpus
:cl-heap
:lparallel
:yacc
:lexer ;https://github.com/massung/lexer.git
:generators
:alexandria
:cl-ppcre
:cl-custom-hash-table
#+sbcl :sb-cover
#+sbcl :sb-sprof
)
:components ((:module "src"
:around-compile
(lambda (thunk)
(declare (optimize
(debug 3)
(safety 3)
(speed 0)
(space 0)
(compilation-speed 0)))
#+sbcl
(declaim (optimize
(sb-cover:store-coverage-data 3)))
(funcall thunk))
:components
((:module "search"
:components
((:file "common")
(:file "iddfs")
(:file "extractor")
(:file "astar")
(:file "dfs")))
(:file "property")
(:file "conditions")
(:file "types")
(:file "util")
(:file "substitute")
(:file "converter")
(:file "parser")
(:file "unify")
(:file "rename")
(:file "termorder")
(:file "simplify")
(:file "resolution")
(:file "rewrite")
(:file "criticalpair")
(:file "completion")
(:file "multiprocess")
(:file "multicompletion")
(:file "clover")
(:file "rendertree")
(:module "ui"
:components
((:file "util")
(:file "batch")
(:file "repl")
(:file "main"))))))
:description "Simple Automated Theorem Prover"
:long-description
#.(read-file-string
(subpathname *load-pathname* "README.md")))