File: top.lisp

package info (click to toggle)
acl2 8.5dfsg-5
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 991,452 kB
  • sloc: lisp: 15,567,759; javascript: 22,820; cpp: 13,929; ansic: 12,092; perl: 7,150; java: 4,405; xml: 3,884; makefile: 3,507; sh: 3,187; ruby: 2,633; ml: 763; python: 746; yacc: 723; awk: 295; csh: 186; php: 171; lex: 154; tcl: 49; asm: 23; haskell: 17
file content (164 lines) | stat: -rw-r--r-- 5,736 bytes parent folder | download | duplicates (8)
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
; Milawa - A Reflective Theorem Prover
; Copyright (C) 2005-2009 Kookamara LLC
;
; Contact:
;
;   Kookamara LLC
;   11410 Windermere Meadows
;   Austin, TX 78759, USA
;   http://www.kookamara.com/
;
; License: (An MIT/X11-style license)
;
;   Permission is hereby granted, free of charge, to any person obtaining a
;   copy of this software and associated documentation files (the "Software"),
;   to deal in the Software without restriction, including without limitation
;   the rights to use, copy, modify, merge, publish, distribute, sublicense,
;   and/or sell copies of the Software, and to permit persons to whom the
;   Software is furnished to do so, subject to the following conditions:
;
;   The above copyright notice and this permission notice shall be included in
;   all copies or substantial portions of the Software.
;
;   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
;   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
;   AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
;   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
;   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
;   DEALINGS IN THE SOFTWARE.
;
; Original author: Jared Davis <jared@kookamara.com>

(in-package "MILAWA")

(include-book "all-at-leastp")
(include-book "all-equalp")
;(include-book "bitwise-support")          ; shouldn't be necessary
(include-book "clean-update")
(include-book "cons-listp")
(include-book "cons-onto-ranges")
(include-book "defaggregate")
(include-book "deflist")
(include-book "defmap")
(include-book "extended-subsets")
(include-book "fast-remove-supersets")
(include-book "intersect")
(include-book "list-list-fix")
(include-book "listify-each")
(include-book "map-listp")
(include-book "mergesort")
(include-book "mergesort-map")
(include-book "multicons")
(include-book "mutually-disjoint")
(include-book "nat-listp")
(include-book "ordered-subsetp")
(include-book "primitives")
(include-book "remove-duplicates-list")
(include-book "remove-all-from-ranges")
(include-book "simple-flatten")
(include-book "strip-firsts")
(include-book "strip-lens")
(include-book "strip-seconds")
(include-book "strip-thirds")
(include-book "sort-symbols")
(include-book "symbol-listp")
(include-book "total-order")
(include-book "tuple-listp")
(include-book "utilities")


(%create-theory type-set-like-rules)
(%enable type-set-like-rules
         equal-of-non-cons-and-cons-cheap
         equal-of-symbol-and-non-symbol-cheap
         equal-of-non-symbol-and-symbol-cheap
         equal-of-cons-and-non-cons-cheap
         equal-of-nat-and-non-nat-cheap
         equal-of-non-nat-and-nat-cheap
         consp-when-natp-cheap
         consp-when-nothing-else-cheap
         symbolp-when-booleanp-cheap
         symbolp-when-consp-cheap
         symbolp-when-natp-cheap
         car-when-symbolp-cheap
         booleanp-when-natp-cheap
         booleanp-when-consp-cheap)

(%create-theory expensive-arithmetic-rules)
(%enable expensive-arithmetic-rules
         not-equal-when-less
         not-equal-when-less-two
         trichotomy-of-<
         antisymmetry-of-<)

(%create-theory expensive-arithmetic-rules-two)
(%enable expensive-arithmetic-rules-two
         |a <= b, c != 0 --> a < c+b|
         |a <= b, c != 0 --> a < b+c|
         |b <= c, a <= b --> a < 1+c|
         transitivity-of-<
         transitivity-of-<-two
         transitivity-of-<-three
         transitivity-of-<-four
         squeeze-law-two
         one-plus-trick
         less-when-zp-left-cheap
         less-when-zp-right-cheap
         plus-when-zp-right-cheap
         natp-when-zp-cheap
         natp-when-not-zp-cheap
         nfix-when-zp-cheap
         nfix-when-not-natp-cheap
         zp-when-not-natp-cheap
         zp-when-natp-cheap)

(%create-theory expensive-subsetp-rules)
(%enable expensive-subsetp-rules
         subsetp-when-prefixp-cheap
         subsetp-when-ordered-subsetp
         memberp-when-not-subset-of-somep-cheap
         memberp-when-not-superset-of-somep-cheap)

(%create-theory unusual-memberp-rules)
(%enable unusual-memberp-rules
         memberp-when-not-superset-of-somep-cheap
         memberp-when-not-subset-of-somep-cheap
         memberp-when-memberp-of-member-of-nonep-alt)

(%create-theory unusual-subsetp-rules)
(%enable unusual-subsetp-rules
         subsetp-when-prefixp-cheap
         subsetp-when-ordered-subsetp)

(%create-theory unusual-consp-rules)
(%enable unusual-consp-rules
         consp-when-memberp-of-cons-listp-alt
         consp-when-memberp-of-none-consp-alt
         consp-of-cdr-when-tuplep-2-cheap
         consp-of-cdr-when-tuplep-3-cheap
         consp-of-cdr-of-cdr-when-tuplep-3-cheap
         consp-of-car-when-none-consp
         consp-of-car-when-cons-listp
         consp-of-cdr-when-len-two-cheap
         consp-of-cdr-when-memberp-not-car-cheap)

(%create-theory usual-consp-rules)
(%enable usual-consp-rules
         car-when-not-consp
         cdr-when-not-consp
         consp-when-true-listp-cheap
         consp-when-consp-of-cdr-cheap
         cdr-of-cdr-with-len-free-past-the-end
         cdr-when-true-listp-with-len-free-past-the-end
         cdr-of-cdr-when-true-listp-with-len-free-past-the-end
         consp-of-cdr-with-len-free
         consp-of-cdr-of-cdr-with-len-free
         cdr-under-iff-when-true-listp-with-len-free
         cdr-of-cdr-under-iff-when-true-listp-with-len-free)

(%finish "utilities")
(%save-events "utilities.events")

;; Clear out the thmfiles table since we'll use the saved image from now on.
(ACL2::table tactic-harness 'thmfiles nil)