File: script.lsp

package info (click to toggle)
acl2 8.0dfsg-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 226,956 kB
  • sloc: lisp: 2,678,900; ansic: 6,101; perl: 5,816; xml: 3,586; cpp: 2,624; ruby: 2,576; makefile: 2,443; sh: 2,312; python: 778; yacc: 764; ml: 763; awk: 260; csh: 186; php: 171; lex: 165; tcl: 44; java: 41; 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)
; -----------------------------------------------------------------