File: script.lsp

package info (click to toggle)
acl2 8.6%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,138,276 kB
  • sloc: lisp: 17,818,294; java: 125,359; python: 28,122; javascript: 23,458; cpp: 18,851; ansic: 11,569; perl: 7,678; xml: 5,591; sh: 3,978; makefile: 3,840; ruby: 2,633; yacc: 1,126; ml: 763; awk: 295; csh: 233; lex: 197; php: 178; tcl: 49; asm: 23; haskell: 17
file content (67 lines) | stat: -rw-r--r-- 2,286 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
;; Renamed from script.lisp to script.lsp by Jared, to follow Makefile
;; convention of only using .lisp for certifiable books.

; You might want to comment out the certification of apprentice.lisp.

; (ld "script.lisp" :ld-pre-eval-print t)

(ld "m5.acl2")
(include-book "ordinals/e0-ordinal" :dir :system)
(certify-book "m5" 4)
(ubt! 1)
; -----------------------------------------------------------------
(include-book "m5")
(certify-book "utilities" 1)
(ubt! 1)
; -----------------------------------------------------------------
(include-book "utilities")
(certify-book "demo" 1)
(ubt! 1)
; -----------------------------------------------------------------
(include-book "utilities")
(certify-book "idemo" 1)
(ubt! 1)
; -----------------------------------------------------------------
; This next book is only around so that I can load it for demos in which
; I prove the theorem that recursive factorial is correct.

(include-book "utilities")
(certify-book "jvm-fact-setup" 1)
(ubt! 1)
; -----------------------------------------------------------------
(include-book "m5")
(certify-book "apprentice-state" 1)
(ubt! 1)
; -----------------------------------------------------------------
; The certification of apprentice.lisp takes about 50 minutes and generates about
; 70MB of output.  

(ld '((include-book "m5")
      (certify-book "apprentice" 1))
    :standard-co "apprentice.log"
    :proofs-co   "apprentice.log"
    :ld-pre-eval-print t)
(ubt! 1)
; -----------------------------------------------------------------
(certify-book "perm")
(ubt! 1)
; -----------------------------------------------------------------
(include-book "utilities")
(certify-book "isort" 1)
(ubt! 1)
; -----------------------------------------------------------------
(include-book "utilities")
(certify-book "partial" 1)
(ubt! 1)
; -----------------------------------------------------------------
(include-book "utilities")
(certify-book "universal" 1)
(ubt! 1)
; -----------------------------------------------------------------
(include-book "universal")
(certify-book "universal-never-returns" 1)
(ubt! 1)
; -----------------------------------------------------------------
(certify-book "infinite-fair-schedule")
(ubt! 1)
; -----------------------------------------------------------------