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 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737
|
; 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")
(include-book "simple-tactics")
;; Rewriting control variables
;;
;; Our rewriting tactics have several parameters. We use more variables to
;; hold these parameters and provide some functions for setting them.
;; UFASTP is the flag for using the fast unconditional rewriter. This is kind
;; of subtle.
;;
;; - At low levels, it will improve proof-finding times, but slow down
;; overall proof time (because the slow urewrite has to be used during the
;; build.)
;;
;; - At high levels, it will improve proof-finding and building times, and
;; result in much smaller proofs (urewriting is one step). It's not clear
;; whether the generated proofs would take longer to check or not; it's a
;; question of whether looking up the rules and doing the pattern matching
;; is more expensive than checking many steps in a trace.
;;
;; CFASTP is the same, for the fast conditional rewriter.
(ACL2::table tactic-harness 'ufastp nil)
(ACL2::table tactic-harness 'cfastp nil)
(defun tactic.harness->ufastp (acl2-world)
(declare (xargs :mode :program))
(cdr (lookup 'ufastp (ACL2::table-alist 'tactic-harness acl2-world))))
(defun tactic.harness->cfastp (acl2-world)
(declare (xargs :mode :program))
(cdr (lookup 'cfastp (ACL2::table-alist 'tactic-harness acl2-world))))
(defun tactic.harness->noexec (acl2-world)
(declare (xargs :mode :program))
(tactic.world->noexec (tactic.harness->world acl2-world)))
(defun tactic.update-noexec-wrapper (add rem world)
(declare (xargs :mode :program))
(tactic.update-noexec add rem world))
(defun tactic.update-noexec-tac-wrapper (skelly add rem)
(declare (xargs :mode :program))
(tactic.update-noexec-tac skelly add rem))
(defmacro %noexec (&rest names)
;; %noexec instructs the rewriter not to try to evaluate terms whose leading
;; function symbol is name.
`(ACL2::progn
;; Step 1: Update the global world.
(ACL2::table tactic-harness 'world
(let* ((add ',names)
(rem nil)
(world (tactic.harness->world ACL2::world)))
(tactic.update-noexec-wrapper add rem world)))
;; Step 2: Update the skeleton, if there currently is one.
(ACL2::table tactic-harness 'skeleton
(let* ((add ',names)
(rem nil)
(skelly (tactic.harness->skeleton ACL2::world)))
(and skelly
(tactic.update-noexec-tac-wrapper skelly add rem))))))
(defmacro %exec (&rest names)
;; %exec permits the rewriter not to try to evaluate terms whose leading
;; function symbol is name.
`(ACL2::progn
;; Step 1: Update the global world.
(ACL2::table tactic-harness 'world
(let* ((add nil)
(rem ',names)
(world (tactic.harness->world ACL2::world)))
(tactic.update-noexec-wrapper add rem world)))
;; Step 2: Update the skeleton, if there currently is one.
(ACL2::table tactic-harness 'skeleton
(let* ((add nil)
(rem ',names)
(skelly (tactic.harness->skeleton ACL2::world)))
(and skelly
(tactic.update-noexec-tac-wrapper skelly add rem))))))
(defmacro %betamode (&optional (betamode 'once))
;; %betamode can be used to change the current beta-reduction mode
;;
;; This might be useful if you have a lambda expression with a complex
;; actual, and the corresponding formal occurs several times in the body.
;; You could first rewrite without beta reduction to simplify the actual, and
;; only later enable beta reduction so that the already-simplified actual is
;; substituted into the body. This may help avoid rewriting the same actual
;; over and over.
;;
;; Usage:
;; (%betamode 'once) Enable a single beta-reduction (the default)
;; (%betamode t) Enable recursive beta-reduction
;; (%betamode nil) Disable beta-reduction
;;
(%simple-world-change-fn (list (cons 'betamode betamode))))
(defmacro %forcingp (&optional (forcingp 't))
;; %forcingp can be used to enable or disable forcing by crewrite.
;;
;; Usage:
;; (%forcingp) Enable forcing (the default)
;; (%forcingp nil) Disable forcing
;;
(%simple-world-change-fn (list (cons 'forcingp (if forcingp t nil)))))
(defmacro %blimit (&optional (n '50))
;; %blimit can be used to change the backchain limit for our rewriters.
;;
;; Each time we try to apply a rule with hypotheses, we must show the hyps
;; are true. We do this by recursively rewriting each hyp. To ensure this
;; type of recursion terminates, we decrease the blimit each time we enter
;; the rewriter to relieve a hyp, and we are not allowed to recur if the
;; blimit reaches zero.
;;
;; Each hypothesis of a rewrite rule can also specify its own limit. When
;; this occurs, we use the minimum of the current backchain limit and the
;; hyp's limit. The intended effect is to allow rules to say, "This hyp
;; might be expensive, so only try to prove it if you can do so cheaply."
;;
;; Usage:
;; (%blimit) Revert to the default backchain limit
;; (%blimit n) Change the backchain limit to n
;;
(%simple-world-change-fn (list (cons 'blimit (nfix n)))))
(defmacro %rlimit (&optional (n '100))
;; %rlimit can be used to change the rewrite limit for our rewriters.
;;
;; Whenever we successfully rewrite a term to term', we immediately try to
;; rewrite term' again. To prevent an infinite recursion, we only do this
;; if the rlimit has not been reached.
;;
;; Why not just rewrite it in the next pass? As one example, suppose we are
;; trying to relieve a hypothesis like (subsetp (rev a) a). We might apply
;; the rule (subsetp (rev x) x) = (subsetp x x) to obtain (subsetp a a), but
;; now unless we also try to rewrite this result we will not notice that it
;; is t. By rewriting it again, we can relieve the hyp and make more
;; progress.
;;
;; Hitting the rlimit should be very rare, so we print a warning if you
;; manage to do it.
;;
;; Usage:
;; (%rlimit) Revert to the default backchain limit
;; (%rlimit n) Change the backchain limit to n
;;
(%simple-world-change-fn (list (cons 'rlimit (nfix n)))))
(defmacro %depth (&optional (n '500))
;; %depth can be used to change the stack depth for evaulation.
;;
;; A message is printed if you hit the depth.
;;
;; Usage:
;; (%depth) Revert to the default stack depth
;; (%depth n) Change the backchain limit to n
;;
(%simple-world-change-fn (list (cons 'depth (nfix n)))))
(defmacro %rwn (&optional (n '20))
;; %rwn can be used to change the number of rewriting passes which will be
;; attempted by crewrite.
;;
;; A warning will be printed if you run out of steps. If you see such a
;; warning, you can decide if you want to apply additional passes.
;;
;; Usage:
;; (%rwn) Revert to the default number of passes
;; (%rwn n) Change to number of passes to n
;;
(%simple-world-change-fn (list (cons 'rwn (nfix n)))))
(defmacro %urwn (&optional (n '20))
;; %urwn can be used to change the number of rewriting passes which will be
;; attempted by urewrite.
;;
;; A warning will be printed if you run out of steps. If you see such a
;; warning, you can decide if you want to apply additional passes.
;;
;; Usage:
;; (%urwn) Revert to the default number of passes
;; (%urwn n) Change to number of passes to n
;;
(%simple-world-change-fn (list (cons 'urwn (nfix n)))))
(defmacro %assmctrl (&key (primaryp 't)
(secondaryp 't)
(directp 't)
(negativep 't))
;; %assmctrl can be used to configure the kinds of inference the assumptions
;; system makes. Turning off some of these may make it faster to construct
;; the initial assumptions. On the other hand, it may result in a weaker
;; assumptions system which may be less useful, or which will require the
;; rewriter to do more on its own.
;;
;; Usage:
;; (%assmctrl) -- use the default (all on)
;; (%assmctrl :primaryp nil :secondaryp nil :directp nil :negativep nil)
;; -- turn them all off, or pick and choose
;;
(%simple-world-change-fn (list (cons 'assm-primaryp (if primaryp t nil))
(cons 'assm-secondaryp (if secondaryp t nil))
(cons 'assm-directp (if directp t nil))
(cons 'assm-negativep (if negativep t nil)))))
;; The rewriting tactics
(defun %tactic.urewrite-first-tac-wrapper (x theoryname fastp world warnp)
(declare (xargs :mode :program))
(tactic.urewrite-first-tac x theoryname fastp world warnp))
(defun %tactic.urewrite-all-tac-wrapper (x theoryname fastp world warnp)
(declare (xargs :mode :program))
(tactic.urewrite-all-tac x theoryname fastp world warnp))
(defmacro %urewrite (theoryname &rest args)
;; Rewrite some goals using only unconditional rules.
;;
;; Usage:
;; (%urewrite <theoryname>) Rewrite all of the goals
;; (%urewrite <theoryname> first) Rewrite only the first goal
`(ACL2::progn
(local (ACL2::table tactic-harness 'skeleton
(let* ((skelly (tactic.harness->skeleton ACL2::world))
(world (tactic.harness->world ACL2::world))
(fastp (tactic.harness->ufastp ACL2::world))
(theoryname ',theoryname)
(warnp (tactic.harness->warnp ACL2::world))
(new-skelly (if (memberp 'first ',args)
(%tactic.urewrite-first-tac-wrapper skelly theoryname fastp world warnp)
(%tactic.urewrite-all-tac-wrapper skelly theoryname fastp world warnp))))
(or new-skelly skelly))))
(local (ACL2::value-triple (ACL2::clear-memoize-tables)))
(local (%print))))
;; I did not find much worth memoizing, though I looked a fair amount.
;; Anything you add here should also be added to %unmemoize-for-crewrite.
;;
;; At various points I tried to memoize these functions with negative
;; results. I take away two lessons from this. One, it's not good to
;; memoize the following functions. Two, if other functions seem like they
;; might be worth memoizing, be sure to run actual tests to make sure there
;; is an improvement.
;;
;; logic.flag-patmatch :condition '(ACL2::eq flag 'term)
;; logic.flag-substitute :condition '(ACL2::eq flag 'term)
;; rw.theory-lookup
;; rw.rule-syntax-okp
;; rw.worse-than-or-equal-termp
;; rw.create-sigmas-to-try
;; rw.assumptions-trace (even with clearing its table after each rewrite)
;;
;; These following give almost no advantage in the tests I've done, but
;; maybe they'll help in other proofs that make more use of term-<. And in
;; any event, they leave this convenient hook for memoizing crewrite. BOZO
;; try to do some big proofs without these, later on.
;(ACL2::memoize 'logic.flag-count-function-occurrences :condition '(ACL2::eq flag 'term))
;(ACL2::memoize 'logic.flag-count-variable-occurrences :condition '(ACL2::eq flag 'term))
;(ACL2::memoize 'logic.flag-count-constant-sizes :condition '(ACL2::eq flag 'term))
(ACL2::memoize 'logic.count-term-sizes)
(defun %tactic.crewrite-first-tac-wrapper (x theoryname fastp world warnp)
(declare (xargs :mode :program))
(tactic.crewrite-first-tac x theoryname fastp world warnp))
(defun %tactic.crewrite-all-tac-wrapper (x theoryname fastp world warnp)
(declare (xargs :mode :program))
(tactic.crewrite-all-tac x theoryname fastp world warnp))
(defmacro %crewrite (theoryname &rest args)
;; Rewrite some goals using conditional and unconditional rules.
;;
;; Usage:
;; (%crewrite <theoryname>) Rewrite all of the goals
;; (%crewrite <theoryname> first) Rewrite only the first goal
`(ACL2::progn
(local (ACL2::table tactic-harness 'skeleton
(let* ((skelly (tactic.harness->skeleton ACL2::world))
(world (tactic.harness->world ACL2::world))
(theoryname ',theoryname)
(warnp (tactic.harness->warnp ACL2::world))
(cfastp (tactic.harness->cfastp ACL2::world))
(new-skelly (if (memberp 'first ',args)
(%tactic.crewrite-first-tac-wrapper skelly theoryname cfastp world warnp)
(%tactic.crewrite-all-tac-wrapper skelly theoryname cfastp world warnp))))
(or new-skelly skelly))))
(local (ACL2::value-triple (ACL2::clear-memoize-tables)))
(local (%print))))
(defun %tactic.waterfall-tac-wrapper (x strategy maxdepth theoryname cfastp ufastp world warnp)
(declare (xargs :mode :program))
(tactic.waterfall-tac x strategy maxdepth theoryname cfastp ufastp world warnp))
(defmacro %waterfall (theoryname maxdepth &key (strategy '(urewrite crewrite-once nolift-split split crewrite)))
`(ACL2::progn
(local (ACL2::table tactic-harness 'skeleton
(let* ((skelly (tactic.harness->skeleton ACL2::world))
(world (tactic.harness->world ACL2::world))
(ufastp (tactic.harness->ufastp ACL2::world))
(cfastp (tactic.harness->cfastp ACL2::world))
(theoryname ',theoryname)
(strategy ',strategy)
(maxdepth ',maxdepth)
(warnp (tactic.harness->warnp ACL2::world))
(new-skelly (%tactic.waterfall-tac-wrapper skelly strategy maxdepth theoryname
cfastp ufastp world warnp)))
(or new-skelly skelly))))
(local (ACL2::value-triple (ACL2::clear-memoize-tables)))
(local (%print))))
(ACL2::defttag rw.crewrite-mods)
;; (ACL2::progn!
;; (ACL2::set-raw-mode t)
;; (ACL2::defun rw.crewrite-clause-list (x blimit rlimit control n)
;; (if (consp x)
;; (let* ((start-time (ACL2::get-internal-run-time))
;; (rewritten (rw.crewrite-clause (car x) blimit rlimit control n))
;; (end-time (ACL2::get-internal-run-time)))
;; (ACL2::prog2$
;; (ACL2::format t "; Rewrote clause #~a in ~a seconds. (~a)~%"
;; (ACL2::length x)
;; (COMMON-LISP::/
;; (COMMON-LISP::coerce (ACL2::- end-time start-time) 'COMMON-LISP::float)
;; ACL2::internal-time-units-per-second)
;; ;; rewritten is an rw.ccstep-listp
;; (cond ((rw.ccstep->provedp (first rewritten))
;; "proved")
;; ((equal (rw.ccstep->t1prime (first rewritten))
;; (first (first rewritten)))
;; "failed")
;; (t
;; "progress")))
;; (cons rewritten
;; (rw.crewrite-clause-list (cdr x) blimit rlimit control n))))
;; nil)))
(ACL2::progn!
(ACL2::set-raw-mode t)
;; Step timing.
;; Regular crewrite step.
(ACL2::defparameter *assms-acc* 0)
(ACL2::defparameter *rw-acc* 0)
(ACL2::declaim (ACL2::inline rw.crewrite-take-step))
(ACL2::defun rw.crewrite-take-step (todo done blimit rlimit control n)
(let* ((astart-time (ACL2::get-internal-run-time))
(assms (rw.empty-assms (rw.control->assmctrl control)))
(assms (rw.assume-left-list (cdr todo) assms))
(assms (rw.assume-right-list done assms))
(contr (rw.assms->contradiction assms))
(aend-time (ACL2::get-internal-run-time))
(up (ACL2::incf *assms-acc* (ACL2::- aend-time astart-time))))
(declare (ignore up))
(rw.ccstep (car todo)
(rw.assms->hypbox assms)
contr
(if (not contr)
(let* ((start-time (ACL2::get-internal-run-time))
(val (rw.crewrite assms (car todo) t blimit rlimit control n))
(end-time (ACL2::get-internal-run-time))
(up (ACL2::incf *rw-acc* (ACL2::- end-time start-time))))
(declare (ignore up))
val)
nil))))
(ACL2::defun rw.crewrite-clause-aux (todo done blimit rlimit control n acc)
(if (consp todo)
(let ((step1 (rw.crewrite-take-step todo done blimit rlimit control n)))
(if (rw.ccstep->provedp step1)
(cons step1 acc)
(rw.crewrite-clause-aux (cdr todo)
(cons (rw.ccstep->t1prime step1) done)
blimit rlimit control n
(cons step1 acc))))
acc))
(ACL2::defun rw.crewrite-clause (clause blimit rlimit control n)
(rw.crewrite-clause-aux clause nil blimit rlimit control n nil))
;; Fast crewrite steps.
(ACL2::declaim (ACL2::inline rw.fast-crewrite-take-step))
(ACL2::defun rw.fast-crewrite-take-step (todo done blimit rlimit control n)
(let* ((astart-time (ACL2::get-internal-run-time))
(assms (rw.empty-fast-assms (rw.control->assmctrl control)))
(assms (rw.fast-assume-left-list (cdr todo) assms))
(assms (rw.fast-assume-right-list done assms))
(contr (rw.fast-assms->contradiction assms))
(aend-time (ACL2::get-internal-run-time))
(up (ACL2::incf *assms-acc* (ACL2::- aend-time astart-time))))
(declare (ignore up))
(rw.fast-ccstep contr
(if contr
nil
(let* ((start-time (ACL2::get-internal-run-time))
(val (rw.fast-crewrite assms (car todo) t blimit
rlimit control n))
(end-time (ACL2::get-internal-run-time))
(up (ACL2::incf *rw-acc* (ACL2::- end-time start-time))))
(declare (ignore up))
val)))))
(acl2::defun rw.fast-crewrite-clause-aux (todo done blimit rlimit control n fgacc)
(if (consp todo)
(let* ((step1 (rw.fast-crewrite-take-step todo done blimit rlimit control n))
(step1-contr (rw.fast-ccstep->contradictionp step1))
(step1-provedp (rw.fast-ccstep->provedp step1))
(step1-ftrace (rw.fast-ccstep->ftrace step1))
(step1-fgoals (and (not step1-contr)
(rw.ftrace->fgoals step1-ftrace))))
(if step1-provedp
(list t nil (fast-app step1-fgoals fgacc))
(rw.fast-crewrite-clause-aux (cdr todo)
(cons (rw.fast-ccstep->t1prime step1) done)
blimit rlimit control n
(fast-app step1-fgoals fgacc))))
(list nil done fgacc)))
(acl2::defun rw.fast-crewrite-clause (clause blimit rlimit control n)
(rw.fast-crewrite-clause-aux clause nil blimit rlimit control n nil))
(acl2::defun rw.make-crewrite-clause-plan-list (x fastp theoryname world)
(if (consp x)
(let* ((reset1 (COMMON-LISP::setf *assms-acc* 0))
(reset2 (COMMON-LISP::setf *rw-acc* 0))
(start-time (ACL2::get-internal-run-time))
(plan1 (rw.make-crewrite-clause-plan (car x) fastp theoryname world))
(end-time (ACL2::get-internal-run-time))
(elapsed (ACL2::- end-time start-time)))
(declare (ignore reset1 reset2))
(ACL2::prog2$
(let* ((total (common-lisp::coerce (ACL2::+ *assms-acc* *rw-acc*) 'COMMON-LISP::float))
(total (if (common-lisp::= total 0) 1 total))
(assmspct (common-lisp::* (common-lisp::/ *assms-acc* total) 100))
(rwpct (common-lisp::* (common-lisp::/ *rw-acc* total) 100))
(wall (COMMON-LISP::/
(COMMON-LISP::coerce elapsed 'COMMON-LISP::float)
ACL2::internal-time-units-per-second)))
(ACL2::format t
"; Rewrote clause #~a in ~a seconds (~a), ~4,2f% assm ~4,2f% rw~%"
(ACL2::length x)
wall
(cond ((rw.crewrite-clause-plan->provedp plan1)
"proved")
((rw.crewrite-clause-plan->progressp plan1)
"progress")
(t
"failed"))
assmspct
rwpct))
(cons plan1
(rw.make-crewrite-clause-plan-list (cdr x) fastp theoryname world))))
nil)))
(defund rw.stop-loop-debugging ()
(declare (xargs :guard t))
(ACL2::cw "rw.stop-loop-debugging has not yet been redefined.~%"))
(defun rw.disable-loop-debugging ()
(declare (xargs :guard t))
;; This may be useful if you want to do tricks with rlimit.
(ACL2::cw "rw.disable-loop-debugging not yet redefined!~%"))
(defun rw.enable-loop-debugging ()
(declare (xargs :guard t))
;; This may be useful if you want to do tricks with rlimit.
(ACL2::cw "rw.enable-loop-debugging not yet redefined!~%"))
(defmacro %disable-loop-debugging ()
`(ACL2::value-triple (rw.disable-loop-debugging)))
(defmacro %enable-loop-debugging ()
`(ACL2::value-triple (rw.enable-loop-debugging)))
(ACL2::progn!
(ACL2::set-raw-mode t)
(ACL2::defparameter *rw.loop-debugging-enabled* t)
(ACL2::defparameter *rw.rlimit-was-reached* nil)
(ACL2::defun rw.disable-loop-debugging ()
(ACL2::setf *rw.loop-debugging-enabled* nil)
(ACL2::setf *rw.rlimit-was-reached* nil)
(ACL2::cw "Disabling loop debugging altogether.~%"))
(ACL2::defun rw.enable-loop-debugging ()
(ACL2::setf *rw.loop-debugging-enabled* t)
(ACL2::cw "Enabling loop debugging.~%"))
(ACL2::defun rw.stop-loop-debugging ()
(ACL2::setf *rw.rlimit-was-reached* nil)
(ACL2::cw "Stopping loop debugging.~%"))
;; When we reach the rlimit we set the flag, and print a message to the user.
(ACL2::defun rw.rlimit-warn ()
(if *rw.loop-debugging-enabled*
(ACL2::progn
(ACL2::cw "WARNING: rlimit exhausted -- the rewriter may be looping!~%")
(ACL2::cw "Be sure to run (rw.stop-loop-debugging) if you interrupt!~%")
(ACL2::setf *rw.rlimit-was-reached* t)
nil)
nil))
;; If the rlimit has been reached, we print a quick summary of each rule we use.
(ACL2::defun rw.crewrite-rule-trace (hypbox lhs rule sigma iffp traces)
(ACL2::progn
(or (not *rw.rlimit-was-reached*)
(ACL2::cw "~x0: ~x1~%"
(rw.rule->name rule)
(logic.substitute (rw.rule->rhs rule) sigma)))
;; Keep in sync with rw.crewrite-rule-trace
(rw.trace 'crewrite-rule hypbox lhs
(logic.substitute (rw.rule->rhs rule) sigma)
iffp traces (list rule sigma))))
;; We stop printing when we get back to an rlimit of five.
(ACL2::defun rw.rlimit-exit (rlimit trace)
(declare (ignore trace))
(if (and *rw.rlimit-was-reached* (ACL2::= rlimit 5))
(rw.stop-loop-debugging)
nil)))
#||
;; Testing out the loop debugger (after loading utilities):
(defsection app-of-app-alt
(%prove (%rule app-of-app-alt
:lhs (app x (app y z))
:rhs (app (app x y) z)))
(%auto)
(%qed)
(%enable default app-of-app-alt))
(%prove (%rule demo
:lhs (app a (app b (app c d)))
:rhs (app a (app (app b c) d))))
(%crewrite default)
||#
;; We have sometimes wanted to investigate the performance benefits of using
;; caching. It is tricky to properly redefine the caching functions (we found
;; that just using :redef didn't always seem to work), so we provide these
;; events for enabling and disabling the cache.
(defun rw.disable-caching-fn ()
(declare (xargs :guard t))
(ACL2::cw "Error: rw.disable-caching-fn has not been redefined ``under the hood.''~%"))
(defun rw.enable-caching-fn ()
(declare (xargs :guard t))
(ACL2::cw "Error: rw.enable-caching-fn has not been redefined ``under the hood.''~%"))
(ACL2::progn!
(ACL2::set-raw-mode t)
(ACL2::defun rw.disable-caching-fn ()
(ACL2::cw "Note: disabling the cache. This cannot be undone with :u -- ~
use (rw.enable-caching) instead.~%")
(ACL2::cw "Note: ACL2 proofs about rw.cache-update and rw.cache-lookup ~
can no longer be trusted!~%")
(ACL2::eval '(ACL2::defun rw.cache-update (term trace cache)
(declare (ignore term trace))
cache))
(ACL2::eval '(ACL2::defun rw.cache-lookup (term iffp cache)
(declare (ignore term iffp cache))
nil))
nil)
(ACL2::defun rw.enable-caching-fn ()
(ACL2::cw "Note: restoring the original definitions of rw.cache-update ~
and rw.cache-lookup.~%")
(ACL2::eval '(ACL2::defun rw.cache-update (term trace cache)
(let ((blockp (rw.cache->blockp cache))
(data (rw.cache->data cache)))
(if (and blockp
(not (logic.constantp (rw.trace->rhs trace))))
cache
(let* ((entry (hons-lookup term data))
(new-cache-line (if (rw.trace->iffp trace)
(rw.cacheline (and entry (rw.cacheline->eqltrace (cdr entry))) trace)
(rw.cacheline trace (and entry (rw.cacheline->ifftrace (cdr entry))))))
(new-data (hons-update term new-cache-line data)))
(rw.cache blockp new-data))))))
(ACL2::eval '(ACL2::defun rw.cache-lookup (term iffp cache)
(let ((entry (hons-lookup term (rw.cache->data cache))))
(and entry
(if iffp
(rw.cacheline->ifftrace (cdr entry))
(rw.cacheline->eqltrace (cdr entry)))))))
nil))
(defmacro rw.disable-caching ()
`(ACL2::value-triple (rw.disable-caching-fn)))
(defmacro rw.enable-caching ()
`(ACL2::value-triple (rw.enable-caching-fn)))
; provide waterfall timing info
(ACL2::progn!
(ACL2::set-raw-mode t)
(ACL2::defun rw.waterfall-list-wrapper (x theoryname cfastp ufastp world steps strategy n)
(if (consp x)
(let* ((start-time (ACL2::get-internal-run-time))
(result (rw.waterfall (car x) theoryname cfastp ufastp world steps strategy n))
(end-time (ACL2::get-internal-run-time))
(elapsed (ACL2::- end-time start-time))
(wall (COMMON-LISP::/
(COMMON-LISP::coerce elapsed 'COMMON-LISP::float)
ACL2::internal-time-units-per-second)))
(ACL2::prog2$
(ACL2::format t
";; Waterfall: clause #~a took ~a seconds, producing ~a subgoals~%"
(ACL2::length x)
wall
(ACL2::length (rw.waterfall-subgoals result)))
(cons result
(rw.waterfall-list-wrapper (cdr x) theoryname cfastp ufastp world steps strategy n))))
nil)))
; urewrite timing
(ACL2::progn!
(ACL2::set-raw-mode t)
(ACL2::defun rw.world-urewrite-list-list (X THEORYNAME WORLD)
(if (consp x)
(let* ((start-time (ACL2::get-internal-run-time))
(result (rw.world-urewrite-list (car x) theoryname world))
(end-time (ACL2::get-internal-run-time))
(elapsed (ACL2::- end-time start-time))
(wall (COMMON-LISP::/
(COMMON-LISP::coerce elapsed 'COMMON-LISP::float)
ACL2::internal-time-units-per-second)))
(ACL2::prog2$
(ACL2::format t
";; Urewrite #~a: ~a seconds.~%"
(ACL2::length x)
wall)
(cons result
(rw.world-urewrite-list-list (cdr x) theoryname world))))
nil))
(ACL2::DEFUN RW.FAST-WORLD-UREWRITE-LIST-LIST (X THEORYNAME WORLD)
(IF (CONSP X)
(let* ((start-time (ACL2::get-internal-run-time))
(result (rw.fast-world-urewrite-list (car x) theoryname world))
(end-time (ACL2::get-internal-run-time))
(elapsed (ACL2::- end-time start-time))
(wall (COMMON-LISP::/
(COMMON-LISP::coerce elapsed 'COMMON-LISP::float)
ACL2::internal-time-units-per-second)))
(ACL2::prog2$
(ACL2::format t
";; Fast urewrite #~a: ~a seconds.~%"
(ACL2::length x)
wall)
(cons result
(rw.fast-world-urewrite-list-list (cdr x) theoryname world))))
nil)))
|