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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
(in-package "ACL2")
(include-book "arithmetic-3/floor-mod/floor-mod" :dir :system)
(defund bv-add (x y)
(mod (+ (nfix x) (nfix y)) 32))
(defun make-bv-add (sym-list)
(cond
((atom sym-list)
nil)
((atom (cdr sym-list))
(car sym-list))
(t
`(bv-add ,(car sym-list)
,(make-bv-add (cdr sym-list))))))
(defun concat-str-macro (lst)
(if (consp lst)
(if (consp (cdr lst))
(cons 'concatenate
(cons ''string (cons (car lst)
(cons (concat-str-macro (cdr lst))
'nil))))
(car lst))
nil))
(defmacro concat-str (&rest args)
(concat-str-macro args))
(defun symbol-from-str-num (str n)
(intern (concat-str str (coerce (explode-atom n 10) 'string))
"ACL2"))
(defun make-sym-list (n)
(cond
((zp n)
nil)
(t
(cons (symbol-from-str-num "X" (1- n))
(make-sym-list (1- n))))))
(defun f-macro-problem-fn (n)
(let ((sym-list (make-sym-list n)))
`(equal (f ,(make-bv-add sym-list))
(f ,(make-bv-add (revappend sym-list nil))))))
(comp 'f-macro-problem-fn) ; needed for Allegro CL, at least
(defmacro f-macro-problem (n)
(f-macro-problem-fn n))
(defstub f (x) t)
(defun macro-problem-fn (n)
(let ((sym-list (make-sym-list n)))
`(equal (f ,(make-bv-add sym-list))
(f ,(make-bv-add (revappend sym-list nil))))))
(comp 'macro-problem-fn) ; perhaps needed (see earlier comp call)
(defmacro macro-problem (n)
(macro-problem-fn n))
; Timings shown below are with output inhibited. To inhibit some output
; interactively:
; (set-inhibit-output-lst '(prove proof-tree))
; Times were obtained on a 2.6 GHz Pentium\textregistered 4 processor with
; 2.0 gigabytes of random access memory, running Allegro Common Lisp 7.0.
(set-rewrite-stack-limit nil)
(comp t)
;;; Tests using ordinary rewriting
(encapsulate ()
(local (include-book "bv-add-common"))
(comp t)
(defthm example-problem-4
(equal (f (bv-add x0 (bv-add x1 (bv-add x2 x3))))
(f (bv-add x3 (bv-add x2 (bv-add x1 x0)))))
:rule-classes nil)
(defthm example-problem-5-f
(f-macro-problem 5)
:rule-classes nil)
(defthm example-problem-5
(macro-problem 5)
:rule-classes nil)
(defthm example-problem-100-f
(f-macro-problem 100)
:rule-classes nil)
(defthm example-problem-100
(macro-problem 100)
:rule-classes nil)
; (Matt K., after v4-3) The following two forms cause a stack overflow in
; ACL2(h) built on 32-bit Linux with Allegro CL 8.0, so we comment them out.
; The stack overflow involves ACL2 source functions VAR-FN-COUNT and
; VAR-FN-COUNT-LST.
; (defthm example-problem-500-f
; (f-macro-problem 500)
; :rule-classes nil)
;Time: 11.26 seconds (prove: 11.24, print: 0.00, other: 0.02)
;(defthm example-problem-500
; (macro-problem 500)
; :rule-classes nil)
; One big problem is enough, so we comment this out:
; (defthm f-example-problem-1000
; (f-macro-problem 1000)
; :rule-classes nil)
;Time: 64.43 seconds (prove: 64.41, print: 0.00, other: 0.02)
; But on Allegro CL 7.0, on a 2.4GHz P4:
;Time: 176.20 seconds (prove: 173.57, print: 0.00, other: 2.63)
; So, we comment the following out too; it doesn't add much to our testing.
; (defthm example-problem-1000
; (macro-problem 1000)
; :rule-classes nil)
)
; Next, without f:
; Tests using clause-processor rule
(encapsulate ()
(local (include-book "bv-add"))
(comp t)
(defthm cl-proc-example-problem-4
(equal (f (bv-add x0 (bv-add x1 (bv-add x2 x3))))
(f (bv-add x3 (bv-add x2 (bv-add x1 x0)))))
:hints (("Goal"
:clause-processor (:function bv-add-sort-cp)))
:rule-classes nil)
(defthm cl-proc-example-problem-5-f
(f-macro-problem 5)
:hints (("Goal"
:clause-processor (:function bv-add-sort-cp)))
:rule-classes nil)
(defthm cl-proc-example-problem-5
(macro-problem 5)
:hints (("Goal"
:clause-processor (:function bv-add-sort-cp)))
:rule-classes nil)
(defthm cl-proc-example-problem-100-f
(f-macro-problem 100)
:hints (("Goal"
:clause-processor (:function bv-add-sort-cp)))
:rule-classes nil)
(defthm cl-proc-example-problem-100
(macro-problem 100)
:hints (("Goal"
:clause-processor (:function bv-add-sort-cp)))
:rule-classes nil)
(defthm cl-proc-example-problem-500-f
(f-macro-problem 500)
:hints (("Goal"
:clause-processor (:function bv-add-sort-cp)))
:rule-classes nil)
; Well, this is sad. On 10/25/09 I (Matt K.) observed Allegro CL 8.0 on Linux
; x86 running out of stack on some problems below. I'll just comment them out.
; (I tried to avoid the problem by modifying the ACL2 sources wi
; #+(and (not acl2-loop-only) allegro)
; (declaim (inline translate11))
; but that didn't solve the problem.)
;;; ;Time: 0.02 seconds (prove: 0.01, print: 0.00, other: 0.01)
;;; (defthm cl-proc-example-problem-500
;;; (macro-problem 500)
;;; :hints (("Goal"
;;; :clause-processor (:function bv-add-sort-cp)))
;;; :rule-classes nil)
;;;
;;; (defthm cl-proc-example-problem-1000-f
;;; (f-macro-problem 1000)
;;; :hints (("Goal"
;;; :clause-processor (:function bv-add-sort-cp)))
;;; :rule-classes nil)
;;;
;;; ;Time: 0.05 seconds (prove: 0.02, print: 0.00, other: 0.03)
;;; (defthm cl-proc-example-problem-1000
;;; (macro-problem 1000)
;;; :hints (("Goal"
;;; :clause-processor (:function bv-add-sort-cp)))
;;; :rule-classes nil)
)
|