File: top.lisp

package info (click to toggle)
acl2 8.6%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 1,111,420 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,976; makefile: 3,833; ruby: 2,633; yacc: 1,126; ml: 763; awk: 295; csh: 233; lex: 197; php: 178; tcl: 49; asm: 23; haskell: 17
file content (63 lines) | stat: -rw-r--r-- 2,702 bytes parent folder | download | duplicates (4)
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
;; Copyright (C) 2015, University of British Columbia
;; Written by Yan Peng (August 2nd 2016)
;;
;; License: A 3-clause BSD license.
;; See the LICENSE file distributed with ACL2
;;

(in-package "SMT")

(include-book "config")

;; verified
(include-book "verified/basics")
(include-book "verified/computed-hints")
(include-book "verified/extractor")
(include-book "verified/Smtlink")
(include-book "verified/hint-interface")
(include-book "verified/hint-please")
(include-book "verified/type-hyp")
(include-book "verified/add-hypo-cp")
(include-book "verified/expand-cp")
(include-book "verified/type-extract-cp")
(include-book "verified/uninterpreted-fn-cp")

;; trusted
(include-book "trusted/prove")
(include-book "trusted/run")
(include-book "trusted/trusted-cp")
(include-book "trusted/write")

;; trusted/z3-py
(include-book "trusted/z3-py/header")
(include-book "trusted/z3-py/names")
(include-book "trusted/z3-py/translator")
(include-book "trusted/z3-py/magic-fix")

(in-theory (disable consp-when-member-equal-of-sym-nat-alistp
                    pseudo-term-list-of-cdar-of-ex-args->term-lst
                    pseudo-term-listp-of-cdr-of-ex-args->term-lst
                    symbolp-of-car-of-ex-args->term-lst
                    pseudo-termp-of-car-of-ex-args->term-lst
                    len-equal-of-formals-of-pseudo-lambdap-and-actuals-of-pseudo-termp
                    symbolp-of-caar-of-ex-args->term-lst
                    symbol-listp-of-formals-of-pseudo-lambdap
                    not-cddr-of-car-of-pseudo-term-list-fix-of-expand-args->term-lst
                    consp-cdr-of-car-of-pseudo-term-list-fix-of-expand-args->term-lst
                    pseudo-term-listp-of-pseudo-lambdap-of-cdar-ex-args->term-lst
                    pseudo-termp-of-body-of-pseudo-lambdap
                    consp-of-cdr-of-pseudo-lambdap
                    consp-of-pseudo-lambdap
                    consp-of-cddr-of-pseudo-lambdap
                    not-stringp-of-cadr-of-pseudo-lambdap
                    integerp-of-cdr-of-assoc-equal-of-ex-args->fn-lvls-of-ex-args-p
                    non-neg-of-cdr-of-assoc-equal-of-ex-args->fn-lvls-of-ex-args-p
                    consp-of-assoc-equal-of-ex-args->fn-lvls-of-ex-args-p
                    not-symbolp-then-consp-of-car-of-fhg-args->term-lst
                    pseudo-term-listp-of-cdr-of-fhg-args->term-lst
                    pseudo-term-listp-of-cdar-of-fhg-args->term-lst
                    symbolp-of-caar-of-fhg-args->term-lst
                    len-equal-of-formals-of-pseudo-lambdap-and-actuals
                    lemma-8
                    lemma-10
                    symbol-string-alistp-is-true-listp))