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 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
|
#|$ACL2s-Preamble$;
(include-book ;; Newline to fool ACL2/cert.pl dependency scanner
"portcullis")
(begin-book t :ttags :all);$ACL2s-Preamble$|#
(in-package "ACL2S")
(include-book "acl2s/definec" :dir :system :ttags :all)
(include-book "acl2s/acl2s-size" :dir :system)
(include-book "acl2s/ccg/ccg" :dir :system
:uncertified-okp nil :ttags ((:ccg))
:load-compiled-file nil)
(include-book "base-lists")
(include-book "guard-obligation-testing")
#|
Support for propery-based design and modeling.
To use this book, you should use defunc and definec to define
functions (not defun), using defdata for datatypes.
You should also use property to define properties (not thm and
defthm). See the notes below regarding properties.
The idea is to provide support for design and modeling of systems in
ACL2s. Here are the built-in modes, but note that you can
easily define your own modes by looking at the definitions
below and updating them.
Modeling-start mode:
During the initial stages of design and modeling, there will be
various errors and we want to catch them as quickly as possible. So,
during this stage, ACL2s will accept definitions and properties as
long as there are no syntactic problems and they pass a limited amount
of testing. So, non-terminating functions will be accepted.
modeling-validate-defs mode:
Once you are happy with your model in modeling-start mode, then switch
to this mode and the idea is that ACL2s will validate definitions,
i.e., ACL2s will not skip admissibility and contract checking, but it
will also not be strict. ACL2s is also given twice the time budget as
in the previous mode. In this mode, functions whose contracts have not
been proven have their contracts checked dynamically, which can lead
to significant increases in running time.
modeling-admit-defs mode:
Once you are happy with the modeling-validate-defs mode, then switch
to this mode and ACL2s will be strict when it comes to admissibility
of definitions. Note that it is not strict wrt properties, so if you
need named properties to admit definitions, ACL2s will accept such
properties as long as it cannot invalidate them.
modeling-admit-all mode:
Once you are happy with the modeling-admit-defs mode, then switch
to this mode and ACL2s will be strict when it comes to admissibility
of definitions and properties. Once you pass this mode,
then you have real ACL2s proofs of correctness.
As mentioned above, you have lots of flexibility because
you can choose a mode and then make project-relevant adjustments.
For example if you are in modeling-admit-all mode, but want
to just assume some properties, you can disable proofs
as follows.
(set-acl2s-property-table-proofsp nil)
(property ...)
...
(set-acl2s-property-table-proofsp t)
|#
(defun gen-property-accessors-updators (tbl a)
(if (endp a)
nil
(b* ((`((,key . &) . &) a)
(acc (make-symbl `(get- ,tbl - ,key) "ACL2S"))
(upd (make-symbl `(set- ,tbl - ,key) "ACL2S")))
(list*
`(defmacro ,acc () (tbl-get-fn ',tbl ,key))
`(defmacro ,upd (x) (tbl-set-fn ',tbl ,key x))
(gen-property-accessors-updators tbl (cdr a))))))
(defmacro gen-property-table (default-alist)
`(progn
(table acl2s-property-table nil
',default-alist
:clear)
(defun acl2s-property-table (wrld)
"API to get the alist representing property table"
(declare (xargs :guard (plist-worldp wrld)))
(table-alist 'acl2s-property-table wrld))
,@(gen-property-accessors-updators
'acl2s-property-table
default-alist)))
;; Generate events for a table containing settings relevant to
;; properties. Use :trans1 to see what this generates.
(def-const *property-thm-keywords*
'(:hints :otf-flg))
(def-const *property-just-defthm-keywords*
'(:rule-classes :instructions))
(def-const *property-core-keywords*
'(:proofs? :proof-timeout
:testing? :testing-timeout
:doc
:check-contracts? :test-contracts? :complete-contracts?
:debug?))
(def-const *property-conjecture-keywords*
'(:vars :hyps :h :body :b))
(def-const *property-keywords*
(append *property-conjecture-keywords*
*property-core-keywords*
*property-thm-keywords*
*property-just-defthm-keywords*))
(gen-property-table
((:debug? . nil)
(:proofs? . t)
(:proof-timeout . 40)
(:testing? . t)
(:testing-timeout . 20)
(:check-contracts? . t)
(:test-contracts? . t)
(:complete-contracts? . t)))
#|
:trans1 (gen-property-table
((:debug? . nil)
(:proofs? . t)
(:proof-timeout . 40)
(:testing? . t)
(:testing-timeout . 20)
(:check-contracts? . t)
(:test-contracts? . t)
(:complete-contracts? . t)))
(table-alist 'acl2s-property-table (w state))
(defdata::get1 :proofs? (table-alist 'acl2s-property-table (w state)))
(set-acl2s-property-table-proofs? nil)
(table-alist 'acl2s-property-table (w state))
(defdata::get1 :proofs? (table-alist 'acl2s-property-table (w state)))
|#
#|
A named property is one that has a name and is treated like a defthm,
eg,
(property dumb (equal x x))
will cause an error because you cannot have a rewrite rule that
rewrites a variable.
If a property does not have a name, it is treated like a thm, so this
is fine.
(property (equal x x))
You could also do this, which shows that you can provide properties
with the same hints and directives that defthm accepts.
(property not-dumb (equal x x) :rule-classes nil)
|#
; If l has duplicate elements, return a list containing the first duplicate;
; else return nil.
(definec find-first-duplicate (l :tl) :tl
(cond ((endp l) nil)
((in (car l) (cdr l)) (list (car l)))
(t (find-first-duplicate (cdr l)))))
(sig find-first-duplicate ((listof :a)) => (listof :a))
#|
Moved to utilities.lisp and acl2s-sigs.lisp
(definec remove-dups-aux (l :tl seen :tl) :tl
(cond ((endp l) (revappend seen nil))
((in (car l) seen) (remove-dups-aux (cdr l) seen))
(t (remove-dups-aux (cdr l) (cons (car l) seen)))))
(sig remove-dups-aux ((listof :a) (listof :a)) => (listof :a))
; Remove duplicates, but leave order of elements the same
(definec remove-dups (l :tl) :tl
(remove-dups-aux l nil))
(sig remove-dups ((listof :a)) => (listof :a))
; (remove-dups '(1 2 3 3 1 3 2 1 1 3))
|#
#|
(definec extract-hyps (x :all) :tl
;(defun extract-hyps (x)
(b* ((x-hyps (if (and (consp x) (equal (car x) 'implies))
(if (and (consp (cdr x))
(consp (second x))
(equal 'and (car (second x))))
(cdr (second x))
(list (second x)))
nil))
(find-duplicate-x-hyps (find-first-duplicate x-hyps))
(- (cw? find-duplicate-x-hyps
"~|**Warning: Your conjecture has duplicate hypothesis, ~x0. ~
~%**This may indicate an error.~%"
find-duplicate-x-hyps)))
(remove-dups x-hyps)))
|#
(definec hyps-list-from-hyps (hyps :all) :all
(case-match hyps
(('and . l) l)
(('^ . l) l)
(& (list hyps))))
(definec extract-hyps (x :all) :tl
:ic (simple-termp x)
(b* ((x-hyps (case-match x
(('implies hyps &)
(hyps-list-from-hyps hyps))
(('=> hyps &)
(hyps-list-from-hyps hyps))
(('-> hyps &)
(hyps-list-from-hyps hyps))
(& nil)))
; ((unless (tlp x-hyps)) nil)
(find-duplicate-x-hyps (find-first-duplicate x-hyps))
(- (cw? find-duplicate-x-hyps
"~|**Warning: Your conjecture has duplicate hypothesis, ~x0. ~
~%**This may indicate an error."
find-duplicate-x-hyps)))
(remove-dups x-hyps)))
(definec extract-body (x :all) :all
(case-match x
(('implies & body) body)
(('=> & body) body)
(('-> & body) body)
(& x)))
(definec del1 (e :all x :tl) :tl
(cond ((endp x) x)
((== e (car x)) (cdr x))
(t (cons (car x) (del1 e (cdr x))))))
#|
I don't need this?
(definec hyps-list-to-hyp (l :ne-tl) :all
(cond ((endp l) (list x))
((endp (cdr l))
`((implies ,hyps ,x)))
((endp x-hyps) `((implies ,hyps ,x) ,hyps))
(t `((implies ,hyps ,(third x)) ,hyps))))
|#
#|
(defun parse-property (args state)
;; Returns (list nm formals ic oc doc decls body kwd-alist)
(declare (xargs :mode :program :stobjs (state)))
(b* ((pkg (current-package state))
(wrld (w state))
(tbl (table-alist 'type-metadata-table wrld))
(atbl (table-alist 'type-alias-table wrld))
(ctx 'property)
((unless (consp args))
(value (er hard? ctx "~| Empty properties are not allowed.~%")))
(name? (acl2::legal-variablep (car args)))
(name (and name? (car args)))
(args (if name? (cdr args) args))
(PT (acl2s-property-table wrld))
(PT (defdata::remove1-assoc-eq-lst (filter-keywords args) PT))
((mv kwd-alist prop-rest)
(defdata::extract-keywords ctx *property-keywords* args PT nil))
(vars? (assoc :vars kwd-alist))
(hyps? (assoc :hyps kwd-alist))
(body? (assoc :body kwd-alist))
((when (and hyps? (not body?)))
(value
(er hard? ctx
"~| If :hyps is provided, then :body must also be provided.~%")))
(body (if body?
(defdata::get1 :body kwd-alist)
(extract-body (car prop-rest))))
(hyps-list (cond (hyps? (defdata::get1 :hyps kwd-alist))
(body? nil)
(t (extract-hyps (car prop-rest)))))
(find-duplicate-hyp (find-first-duplicate hyps-list))
(- (cw? find-duplicate-hyp
"~|**Warning: Your property has a duplicate hypothesis, ~x0. ~
~%**This may indicate an error.~%"
find-duplicate-hyp))
(hyps-list (remove-dups hyps-list))
(user-var-list (defdata::get1 :vars kwd-alist))
(user-vars (evens user-var-list))
(user-types (odds user-var-list))
(user-types (map-intern-types user-types pkg))
(user-preds (map-preds user-types tbl atbl))
(type-list1 (make-input-contract user-vars user-preds))
(type-list (hyps-list-from-hyps type-list1))
(type-hyps-list (append type-list hyps-list))
(prop (cond ((endp type-hyps-list) body)
((endp (cdr type-hyps-list))
`(implies ,(car type-hyps-list) ,body))
(t `(implies (and ,@type-hyps-list) ,body))))
((mv ?erp trans-prop)
(acl2::pseudo-translate prop nil wrld))
(all-vars (acl2::all-vars trans-prop))
(vars (if vars? user-vars all-vars))
((when (not (perm vars all-vars)))
(value
(er hard? ctx
"~| The :vars provided do not match the actual variables ~
appearing in the property.~%")))
((mv erp val)
(guard-obligation prop nil nil t ctx state))
((when erp)
(value (er hard? ctx "~%**Guard Error **~%"))))
(er-let* ((foo (trans-eval `(must-succeed (thm ,val))
ctx
state
t)))
(value (list name? foo name vars type-hyps-list body kwd-alist)))))
|#
(definec sym-diff (x :tl y :tl) :tl
(app (set-difference-equal x y)
(set-difference-equal y x)))
(definec property-varsp (x :tl) :bool
(v (endp x)
(^ (consp (cdr x))
(acl2::legal-variablep (first x))
(acl2::keywordp (second x))
(property-varsp (cddr x)))))
; (property-varsp '(x :int y :int ))
; (defdata::get1 :vars '((:vars x :int y :int )))
(defun parse-property (args state)
;; Returns (list nm formals ic oc doc decls body kwd-alist)
(declare (xargs :mode :program :stobjs (state)))
(b* ((pkg (current-package state))
(wrld (w state))
(tbl (table-alist 'type-metadata-table wrld))
(atbl (table-alist 'type-alias-table wrld))
(ctx 'property)
(name? (acl2::legal-variablep (car args)))
(name (and name? (car args)))
(args (if name? (cdr args) args))
(PT (acl2s-property-table wrld))
(PT (defdata::remove1-assoc-eq-lst (filter-keywords args) PT))
((mv kwd-alist prop-rest)
(defdata::extract-keywords ctx *property-keywords* args PT nil))
(debug? (defdata::get1 :debug? kwd-alist))
(debug-all? (== debug? :all))
(- (cw? debug-all? "~%**prop-rest is: ~x0~%" prop-rest))
(- (cw? debug-all? "~|**kwd-alist is: ~x0~%" kwd-alist))
(vars? (assoc :vars kwd-alist))
(- (cw? debug-all? "~|**vars? is: ~x0~%" vars?))
((when (and (! vars?)
(! (proper-argsp (car prop-rest)))))
(ecw "~%**ERROR: The argument list: ~x0 is not well-formed."
(car prop-rest)
nil))
(ivars? (and (! vars?)
(cons :vars (process-typed-args (car prop-rest)))))
(vars? (or vars? ivars?))
(- (cw? debug-all? "~|**vars? is: ~x0~%" vars?))
(prop-rest (if ivars? (cdr prop-rest) prop-rest))
(hyps? (assoc :hyps kwd-alist))
(hyps? (or hyps? (assoc :h kwd-alist)))
(body? (assoc :body kwd-alist))
(body? (or body? (assoc :b kwd-alist)))
;; I should do something similar to :pre, :ic, etc in
;; definec. Allow multiple hyps, bodys and combine them.
;; Search for :body, :hyps in function.
(check-contracts? (defdata::get1 :check-contracts? kwd-alist))
(test-contracts? (defdata::get1 :test-contracts? kwd-alist))
; ((when (and hyps? (not body?)))
; (er soft ctx
; "~|**ERROR: If :hyps is provided, then :body must also be provided."))
(body (cond (body?
(or (defdata::get1 :body kwd-alist)
(defdata::get1 :b kwd-alist)))
(hyps? (car prop-rest))
(t (extract-body (car prop-rest)))))
(hyps-list (cond (hyps? (hyps-list-from-hyps
(or (defdata::get1 :hyps kwd-alist)
(defdata::get1 :h kwd-alist))))
(body? nil)))
((mv erp pt-hyps-list)
(if (or hyps? body?)
(mv nil nil)
(acl2::pseudo-translate (car prop-rest) nil wrld)))
((when erp)
(ecw "~%**ERROR: The translation of hyps: ~
~x0 ~
resulted in an error."
(car prop-rest)
nil))
(hyps-list (if pt-hyps-list (extract-hyps pt-hyps-list) hyps-list))
(find-duplicate-hyp (find-first-duplicate hyps-list))
(- (cw? find-duplicate-hyp
"~%**Warning: Your property has a duplicate hypothesis, ~x0. ~
~%**This may indicate an error.~%"
find-duplicate-hyp))
(hyps-list (remove-dups hyps-list))
(user-var-list (cdr vars?))
(user-vars (evens user-var-list))
(user-types (odds user-var-list))
(user-types (map-intern-types user-types pkg))
(- (cw? debug-all? "~|**user-types is: ~x0~%" user-types))
(user-preds (map-preds user-types tbl atbl))
(- (cw? debug-all? "~|**user-preds is: ~x0~%" user-preds))
(bad-type
(find-bad-d-arg-types user-types user-preds))
((when bad-type)
(ecw "~%**ERROR: One of the argument types, ~x0, is not a type."
bad-type nil))
(type-list1 (make-input-contract user-vars user-preds))
(type-list (hyps-list-from-hyps type-list1))
(type-hyps-list (append type-list hyps-list))
(- (cw? debug-all? "~|**type-hyps-list is: ~x0~%" type-hyps-list))
(prop (cond ((endp type-hyps-list) body)
((endp (cdr type-hyps-list))
`(implies ,(car type-hyps-list) ,body))
(t `(implies (and ,@type-hyps-list) ,body))))
((mv erp trans-prop)
(acl2::pseudo-translate prop nil wrld))
(all-vars (acl2::all-vars trans-prop))
(vars (if vars? user-vars all-vars))
(- (cw? debug-all? "~|**vars is: ~x0~%" vars))
(- (cw? debug-all? "~|**all-vars is: ~x0~%" all-vars))
(var-diff (sym-diff vars all-vars))
(- (cw? debug-all? "~|**prop is: ~x0~%" prop))
(- (cw? debug-all? "~|**trans-prop is: ~x0~%" trans-prop))
(parsed (list name? name prop kwd-alist))
((when erp)
(ecw "~%**ERROR: The translation of prop: ~
~x0 ~
resulted in an error."
prop
parsed))
((unless (or (consp prop-rest) body?))
(ecw "~%**ERROR: Empty properties are not allowed."
parsed))
((when var-diff)
(ecw "~%**ERROR: The :vars provided do not match the actual variables ~
appearing in the property. An example is ~x0."
(car var-diff)
parsed))
(gprop (sublis-fn-simple '((implies . impliez)) trans-prop))
(- (cw? debug-all? "~|**gprop is: ~x0~%" gprop))
((mv gc-erp val)
(if check-contracts?
(guard-obligation gprop nil nil t ctx state)
(guard-obligation t nil nil t ctx state)))
((list* & CL &) val)
(gc-guards (if gc-erp t (acl2::prettyify-clause-set CL nil wrld)))
(check-guards (if (and check-contracts? (not gc-erp)) gc-guards t))
((mv gt-erp val)
(if test-contracts?
(acl2::guard-obligation-testing gprop nil nil t ctx state)
(guard-obligation t nil nil t ctx state)))
((when gt-erp)
(ecw "~%**ERROR Determining Contract Checking Proof Obligation.** ~
~%**val is: ~x0"
val
parsed))
((list* & CL &) val)
(gt-guards (acl2::prettyify-clause-set CL nil wrld))
(test-guards (if test-contracts? gt-guards t))
(- (cw? debug? "~|**The Original Contract Checking Proof Obligation is: ~x0~%" gc-guards))
(- (cw? debug? "~|**The Original Contract Testing Proof Obligation is: ~x0~%" gt-guards))
(- (cw? debug? "~|**The Contract Checking Proof Obligation is: ~x0~%" check-guards))
(- (cw? debug? "~|**The Contract Testing Proof Obligation is: ~x0~%" test-guards))
(proof-timeout (defdata::get1 :proof-timeout kwd-alist))
(testing-timeout (defdata::get1 :testing-timeout kwd-alist))
(- (cw? (and check-contracts? (not gc-erp)) "~%Form: ( CONTRACT-CHECKING PROPERTY ...)"))
(- (cw "~%"))
((mv te-thm-erp val state)
(if (and check-contracts? (not gc-erp))
(with-time-limit
proof-timeout
(trans-eval
`(with-output
,@(if debug?
'(:on :all :summary-on :all :gag-mode nil
:off (proof-builder proof-tree))
(if check-contracts?
'(:off :all :on (summary comment)
:summary-on :all
:summary-off (:other-than time))
'(:off :all :summary-off :all :on comment)))
(thm-no-test ,check-guards))
ctx state t))
(mv nil nil state)))
((list* & thm-erp &) val)
(- (cw? debug-all? "~|**te-thm-erp is: ~x0~%" te-thm-erp))
(- (cw? debug-all? "~|**val is: ~x0~%" val))
(- (cw? debug-all? "~|**thm-erp is: ~x0~%" thm-erp))
(- (cw? thm-erp
"~%**ERROR During Contract Checking.** ~
~|**The Contract Checking Proof Obligation is: ~x0"
check-guards))
(- (cw? (and test-contracts? (or thm-erp gc-erp (not check-contracts?)))
"~%Form: ( TESTING PROPERTY CONTRACTS ...)"))
((mv te-test-erp val state)
(if (and test-contracts? (or thm-erp gc-erp (not check-contracts?)))
(with-time-limit
testing-timeout
(trans-eval `(with-output
,@(if debug?
'(:on :all :off (proof-builder proof-tree) :gag-mode nil)
'(:off :all :on (error comment)))
(test? ,test-guards
,@(if debug?
'()
'(:print-cgen-summary nil :num-witnesses 0))))
ctx state t))
(mv nil nil state)))
((list* & test-erp &) val)
(- (cw? debug-all? "~|**te-test-erp is: ~x0~%" te-test-erp))
(- (cw? debug-all? "~|**val is: ~x0~%" val))
(- (cw? debug-all? "~|**test-erp is: ~x0~%" test-erp))
((when gc-erp)
(ecw "~%**ERROR Determining Contract Checking Proof Obligation.** ~
~%**val is: ~x0"
val
parsed))
((when test-erp)
(ecw "~%**Contract Testing Error. The hypotheses of your property must imply:~
~% ~x0.~
~%The counterexample above shows that this is not the case."
test-guards
parsed))
((when thm-erp)
(ecw "~%**Contract Checking Error. The hypotheses of your property must imply:~
~% ~x0."
check-guards
parsed))
)
(value parsed)))
#|
(defmacro ctest? (form &rest kwd-val-lst)
(progn (contract-check form kwd-val-lst)
(test? form kwd-val-lst)))
|#
(defun contract-check (form kwd-val-lst state)
;; Returns (list nm formals ic oc doc decls body kwd-alist)
(declare (xargs :mode :program :stobjs (state)))
(b* ((wrld (w state))
(ctx 'contract-check)
; (body (extract-body form))
; (hyps-list (extract-hyps form))
(prop form)
(- (cw? t "~%**Property is: ~x0~%" prop))
(gprop (sublis-fn-simple '((implies . impliez)) prop))
((mv erp val) (guard-obligation gprop nil nil t ctx state))
((when erp)
(er soft ctx "~|**ERROR During Contract Checking.**"))
((list* & CL &) val) (guards (acl2::prettyify-clause-set CL nil wrld))
(- (cw? t "~|**The Contract Completion Proof Obligation is: ~x0~%" guards))
(- (cw? t "~%Form: ( CONTRACT-CHECKING PROPERTY ...)~%"))
(cgen::cgen-state (cgen::make-cgen-state-fn form (cons :USER-DEFINED ctx)
kwd-val-lst (w state)))
(timeout (cgen::cget cgen-timeout))
((mv te-thm-erp val state)
(with-time-limit
timeout
(trans-eval `(with-output
;;:on :all :off (proof-builder proof-tree) :gag-mode nil
:off :all :on (summary comment)
:summary-off (:other-than time)
:gag-mode nil
(encapsulate
nil
(with-output
;;:on :all :off (proof-builder proof-tree) :gag-mode nil
:off :all :on comment
(thm-no-test ,guards))))
ctx state t)))
((list* & thm-erp &) val)
(- (cw? t "~|**trans-eval-thm-erp is: ~x0~%" te-thm-erp))
(- (cw? t "~|**val is: ~x0~%" val))
(- (cw? t "~|**thm-erp is: ~x0~%" thm-erp))
(- (cw? thm-erp "~|Form: ( TESTING PROPERTY CONTRACTS ...)"))
((mv te-test-erp val state)
(if thm-erp
(with-time-limit
timeout
(trans-eval `(with-output
;; :on :all :off (proof-builder proof-tree) :gag-mode nil
:off :all :on (error comment)
(test? ,guards
;;
:print-cgen-summary nil :num-witnesses 0
))
ctx state t))
(mv nil nil state)))
((list* & test-erp &) val)
(- (cw? t "~|**trans-eval-test-erp is: ~x0~%" te-test-erp))
(- (cw? t "~|**val is: ~x0~%" val))
(- (cw? t "~|**test-erp is: ~x0~%" test-erp))
((when test-erp)
(er soft ctx "~%**Contract Completion Error. The hypotheses of your property must imply:~
~% ~x0.~
~%The counterexample above shows that this is not the case."
guards))
((when thm-erp)
(er soft ctx "~%**Contract Completion Error. The hypotheses of your property must imply:~
~% ~x0."
guards)))
(value t)))
#|
()
(contract-check '(implies (symbolp a) (= a a)) nil state)
|#
(definec gen-other-keywords-aux (alist :alist aux :tl) :tl
(if (endp alist)
aux
(gen-other-keywords-aux
(cdr alist)
`(,(caar alist) ,(cdar alist) . ,aux))))
(definec gen-other-keywords (alist :alist) :tl
(gen-other-keywords-aux alist nil))
; (gen-other-keywords '((:hints ("goal" :cases ((< 0 b))))))
(defun property-core (parsed)
(declare (xargs :mode :program))
(b* (((list name? name prop kwd-alist) parsed)
(proofs? (defdata::get1 :proofs? kwd-alist))
(testing? (defdata::get1 :testing? kwd-alist))
(debug? (defdata::get1 :debug? kwd-alist))
(debug-all? (== debug? :all))
(proof-timeout (defdata::get1 :proof-timeout kwd-alist))
(testing-timeout (defdata::get1 :testing-timeout kwd-alist))
(prove (cond ((and name? testing?) 'defthm)
(name? 'defthm-no-test)
(testing? 'thm)
(t 'thm-no-test)))
;; Used to have the following
;; (prove (if name? 'defthm-no-test 'thm-no-test))
;; but testing can be useful, eg, it can find counterexamples
;; to inductive proofs, so now, if testing is enabled, then we
;; also test.
(other-kwds
(defdata::remove1-assoc-eq-lst
(append (if name? nil *property-just-defthm-keywords*)
*property-core-keywords*
*property-conjecture-keywords*)
kwd-alist))
(- (cw? debug-all? "~|Kwd-alist: ~x0~%" kwd-alist))
(- (cw? debug-all? "~|Other-kwds: ~x0~%" other-kwds))
(flat-kwds (gen-other-keywords other-kwds))
(- (cw? debug-all? "~|Flat-kwds: ~x0~%" flat-kwds))
(args (if name?
(list* name prop flat-kwds)
(list* prop flat-kwds)))
((when proofs?)
`(with-output
:off :all :on (comment summary)
:summary-on :all :summary-off (:other-than time)
(encapsulate
()
(value-triple (cw "~|Form: ( PROVING PROPERTY )~%"))
(with-time-limit
,proof-timeout
(with-output
,@(if debug?
'(:on :all :off (proof-builder proof-tree)
:summary-on :all :gag-mode nil)
'(:stack :pop :on (error summary comment)
:summary-on :all
:summary-off (:other-than time rules warnings)))
(,prove ,@args)))
(value-triple (cw "~|Form: ( ACCEPTED PROPERTY AS THEOREM )~%")))))
((when (and testing? name?))
`(with-output
:off :all :on (comment summary)
:summary-on :all :summary-off (:other-than time)
(encapsulate
()
(value-triple (cw "~|Form: ( TESTING PROPERTY )~%"))
(with-time-limit
,testing-timeout
(with-output
,@(if debug?
'(:on :all :off (proof-builder proof-tree)
:summary-on :all :gag-mode nil)
'(:stack :pop :on (error summary comment)
:summary-on :all
:summary-off (:other-than time rules warnings)))
(defthm-test-no-proof ,@args)))
(value-triple
(cw "~|Form: ( ACCEPTED PROPERTY AS A THEOREM WITHOUT PROOF )~%")))))
((when testing?)
`(with-output
:off :all :on (comment summary)
:summary-on :all :summary-off (:other-than time)
(encapsulate
()
(value-triple (cw "~|Form: ( TESTING PROPERTY )~%"))
(with-time-limit
,testing-timeout
(with-output
,@(if debug?
'(:on :all :off (proof-builder proof-tree)
:summary-on :all :gag-mode nil)
'(:off :all :on (error comment)))
(test? ,@args)))
;; (with-output :stack :pop (test? ,@args)))
(value-triple
(cw "~|Form: ( PROPERTY PASSED TESTING )~%")))))
((when name?)
`(with-output
:off :all :on (comment summary)
:summary-on :all :summary-off (:other-than time)
(encapsulate
()
(value-triple (cw "~|Form: ( ANALYZING PROPERTY )~%"))
(with-time-limit
,proof-timeout
(with-output
,@(if debug?
'(:on :all :off (proof-builder proof-tree)
:summary-on :all :gag-mode nil)
'(:stack :pop :on (error summary comment)
:summary-on :all
:summary-off (:other-than time warnings)))
(defthmskipall ,@args)))
;; (with-output :stack :pop (defthmskipall ,@args)))
(value-triple
(cw "~|Form: ( ACCEPTED PROPERTY AS A THEOREM WITHOUT PROOF )~%"))))))
`(value-triple :passed)))
(defun property-fn (args state)
(declare (xargs :mode :program :stobjs (state)))
(b* (((mv erp parsed state)
(parse-property args state))
((list - - - kwd-alist) parsed)
(debug? (defdata::get1 :debug? kwd-alist))
(debug-hint
(if debug?
""
" To debug, add \":debug? t\" at the end of your property.~%"))
((when erp)
(ecw "~%~|******** PROPERTY FAILED ********~% ~@0" debug-hint nil)))
(value `(make-event ',(property-core parsed)))))
(defmacro property (&rest args)
(b* ((debug? (let ((lst (member :debug? args)))
(and lst (cadr lst)))))
`(with-output
:off :all :on (summary comment)
:summary-off (:other-than time)
:gag-mode ,(not debug?)
:stack :push
(encapsulate
()
(with-output
:off :all :on comment
(make-event (property-fn ',args state)))
(value-triple (cw "~|Form: ( PROPERTY CHECKING SUCCESSFUL )~%"))))))
(defmacro property-fail (&rest args)
`(must-fail (property ,@args)))
#|
start-modeling:
You are just starting to design your model, so the goal is quick
responses from ACL2s. Therefore, testing is done with a short timeout
but admissibility, contract checking and body contract checking are
skipped.
If you want to all skip testing, use one of the above forms.
Properties are just tested with a short timeout.
|#
(defmacro modeling-set-parms (cgen cgen-local defunc proof testing)
`(progn
(acl2s-defaults :set cgen-timeout ,cgen)
(acl2s-defaults :set cgen-local-timeout ,cgen-local)
(set-defunc-timeout ,defunc)
(set-acl2s-property-table-proof-timeout ,proof)
(set-acl2s-property-table-testing-timeout ,testing)))
(defmacro modeling-start
(&key (cgen '2) (cgen-local '1) (defunc '5) (proof '5) (testing '5))
`(progn
(acl2s-defaults :set testing-enabled t)
(set-defunc-skip-admissibilityp t)
(set-defunc-skip-function-contractp t)
(set-defunc-skip-body-contractsp t)
(set-acl2s-property-table-test-contracts? t)
(set-acl2s-property-table-check-contracts? nil)
(set-acl2s-property-table-proofs? nil)
(set-acl2s-property-table-testing? t)
(modeling-set-parms ,cgen ,cgen-local ,defunc ,proof ,testing)))
(defmacro modeling-validate-defs
(&key (cgen '4) (cgen-local '2) (defunc '10) (proof '10) (testing '10))
`(progn
(acl2s-defaults :set testing-enabled t)
(set-defunc-skip-admissibilityp nil)
(set-defunc-skip-function-contractp nil)
(set-defunc-skip-body-contractsp nil)
(set-defunc-termination-strictp nil)
(set-defunc-function-contract-strictp nil)
(set-defunc-body-contracts-strictp nil)
(set-acl2s-property-table-test-contracts? t)
(set-acl2s-property-table-check-contracts? nil)
(set-acl2s-property-table-proofs? nil)
(set-acl2s-property-table-testing? t)
(modeling-set-parms ,cgen ,cgen-local ,defunc ,proof ,testing)))
(defmacro modeling-admit-defs
(&key (cgen '30) (cgen-local '15) (defunc '60) (proof '60) (testing '30))
`(progn
(acl2s-defaults :set testing-enabled t)
(set-defunc-skip-admissibilityp nil)
(set-defunc-skip-function-contractp nil)
(set-defunc-skip-body-contractsp nil)
(set-defunc-termination-strictp t)
(set-defunc-function-contract-strictp t)
(set-defunc-body-contracts-strictp t)
(set-acl2s-property-table-check-contracts? t)
(set-acl2s-property-table-proofs? nil)
(set-acl2s-property-table-testing? t)
(modeling-set-parms ,cgen ,cgen-local ,defunc ,proof ,testing)))
(defmacro modeling-admit-all
(&key (cgen '60) (cgen-local '15) (defunc '90) (proof '120) (testing '60))
`(progn
(acl2s-defaults :set testing-enabled t)
(set-defunc-skip-admissibilityp nil)
(set-defunc-skip-function-contractp nil)
(set-defunc-skip-body-contractsp nil)
(set-defunc-termination-strictp t)
(set-defunc-function-contract-strictp t)
(set-defunc-body-contracts-strictp t)
(set-acl2s-property-table-test-contracts? t)
(set-acl2s-property-table-check-contracts? t)
(set-acl2s-property-table-proofs? t)
(set-acl2s-property-table-testing? t)
(modeling-set-parms ,cgen ,cgen-local ,defunc ,proof ,testing)))
; some tests to make sure we pick up :hyps when :body is/is not specified
(property (i :int)
:hyps (natp i)
(=> (< 0 i) (posp i)))
(property (i :rational)
:hyps (intp i)
(=> (< 0 i) (posp i)))
(property (i :rational)
:hyps (< 0 i)
(=> (intp i) (posp i)))
(property (i :int)
:hyps (natp i)
:body (=> (< 0 i) (posp i)))
(property (i :rational)
:hyps (intp i)
:body (=> (< 0 i) (posp i)))
(property (i :rational)
:hyps (< 0 i)
:body (=> (intp i) (posp i)))
#|
(modeling-start)
(modeling-validate-defs)
(modeling-admit-defs)
(modeling-admit-all)
|#
(defmacro propertyd (name &rest args)
`(with-output
:off :all :on (error) :stack :push
(encapsulate
()
(property ,name ,@args)
(in-theory (disable ,name)))))
#|
Example of contract testing/checking.
; Fails contract checking (proofs).
; But then should proceed to also test contracts and generate a
; counterexample and explain what the contracts mean.
(property (x y :all)
:debug? t
(== (app x y) (app x y)))
; Without debugging messages
(property (x y :all)
(== (app x y) (app x y)))
; Fails contract checking (proofs)
; Should not try testing contracts; should not show any testing info
(property (x y :all)
:debug? t
:test-contracts? nil
(== (app x y) (app x y)))
; Without debugging messages
(property (x y :all)
:test-contracts? nil
(== (app x y) (app x y)))
; Should not try proving contracts; should not show any proving info
; Fails contract testing (cgen) with counterexample
(property (x y :all)
:debug? t
:check-contracts? nil
(== (app x y) (app x y)))
; Without debugging messages
(property (x y :all)
:check-contracts? nil
(== (app x y) (app x y)))
; No contract checking or testing, so should pass
(property (x y :all)
:debug? t
:check-contracts? nil
:test-contracts? nil
(== (app x y) (app x y)))
; Without debugging messages
(property (x y :all)
:check-contracts? nil
:test-contracts? nil
(== (app x y) (app x y)))
; Note that if the property has functions whose guards have not been
; checked, that should not lead to an error if :check-contracts? and
; :test-contracts? are both nil. ;
(defun appp (x y)
(declare (xargs :mode :program))
(app x y))
(defun appp (x y)
(app x y))
(property (x y :all)
:debug? t
(== (appp x y) (appp x y)))
(property (x y :all)
:debug? t
(== (appp x y) (appp x y)))
(property (x y :all)
:check-contracts? nil
:debug? t
(== (appp x y) (appp x y)))
(property (x y :all)
:check-contracts? nil
:test-contracts? nil
:debug? t
(== (appp x y) (appp x y)))
|#
|