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
|
; 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")
; INSTRUCTIONS:
;
; After generating all the proofs and whatnot, run the following commands.
;
; cd $(MILAWA)/Sources/ACL2/bootstrap
; ./level2/symmetry < proof-sizes-acl2.lsp
;
; This generates the proof-sizes-acl2 executable, which can then be used
; to run the proof-sizes.lsp script.
; What does this script do?
;
; To compare the sizes of proofs at different levels, we want to be able
; to recreate the "environment" in which the proof was carried out. That
; is, we want to store things such as the world and definitions that were
; in play at the time the proof was done.
;
; In this script, we begin by redefining %autoprove so that it will store
; the world which was being used at the beginning of each proof. We then
; load all of the bootstrapping files where proofs are carried out.
;
; It takes several minutes to load all of the proofs. Because of this, we want
; to go ahead and save a proof-sizes-acl2 executable, which we can use to carry
; out the re-proving, without having to reload all of these books.
(ACL2::set-ld-redefinition-action '(:warn . :overwrite) ACL2::state)
(ACL2::table proof-sizes 'autoprove-hints nil)
(defun get-autoprove-hints (world)
(declare (xargs :mode :program))
(cdr (lookup 'autoprove-hints (ACL2::table-alist 'proof-sizes world))))
(defmacro %autoprove (name &rest hints)
`(ACL2::progn
(ACL2::table proof-sizes 'autoprove-hints
(cons (let ((world (tactic.harness->world ACL2::world)))
(list ',name ',hints world))
(get-autoprove-hints ACL2::world)))
(ACL2::make-event (autoprove-fn ',name ',hints ACL2::state))))
; These include-books grab everything EXCEPT the actual transitions to new
; proof checkers. You MUST NOT include books such as level2/level2, or
; level3/level3, because they include %switch-builder calls which are
; irrevocable. We do not want to switch the builders until we are ready to try
; the proof at different levels.
; Often the -acl2 book includes the supporting books. I'm actually wanting to
; move away from that style. To see what books you need to load, look at
; levelN.lisp, and see what it includes. Then load all those books (not LevelN
; itself, just what it includes) and also load the -acl2 book.
(include-book "level2/support-3")
(include-book "level2/level2-acl2") ;; doesn't include sub-books
(include-book "level3/prop")
(include-book "level3/pequal")
(include-book "level3/equal")
(include-book "level3/iff")
(include-book "level3/if")
(include-book "level3/not")
(include-book "level3/disjoined-update-clause-bldr")
(include-book "level3/level3-acl2") ;; doesn't include sub-books
(include-book "level4/level4-acl2")
(include-book "level5/level5-acl2")
(include-book "level6/level6-acl2")
(include-book "level7/level7-acl2")
(include-book "level8/level8-acl2")
(include-book "level9/world-check")
(include-book "level9/ancestors")
(include-book "level9/cachep")
(include-book "level9/fast-cache")
(include-book "level9/match-free")
(include-book "level9/rewrite-world-bldrs")
(include-book "level9/level9-acl2") ; doesn't include sub-books
(include-book "level10/crewrite-world")
(include-book "level10/level10-acl2") ; doesn't include sub-books
(include-book "level11/compiler")
(include-book "level11/level11-acl2") ; doesn't include sub-books
; Now that all the books are loaded, we can save our image.
:q
(ACL2::save-exec "proof-sizes-acl2" "Ready to compare proof sizes.")
|