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 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279
|
; 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 "trace-okp")
(include-book "collect-forced-goals")
(include-book "../controlp")
(set-verify-guards-eagerness 2)
(set-case-split-limitations nil)
(set-well-founded-relation ord<)
(set-measure-function rank)
(defthmd booleanp-of-rw.trace->iffp
(implies (rw.tracep x)
(equal (booleanp (rw.trace->iffp x))
t)))
(ACL2::theory-invariant (ACL2::incompatible (:rewrite booleanp-of-rw.trace->iffp)
(:rewrite forcing-booleanp-of-rw.trace->iffp)))
(local (in-theory (e/d (booleanp-of-rw.trace->iffp)
(forcing-booleanp-of-rw.trace->iffp))))
(defund rw.fail-trace (hypbox term iffp)
(declare (xargs :guard (and (rw.hypboxp hypbox)
(logic.termp term)
(booleanp iffp))))
(rw.trace 'fail hypbox term term iffp nil nil))
(encapsulate
()
(local (in-theory (enable rw.fail-trace)))
(defthm rw.trace->method-of-rw.fail-trace
(equal (rw.trace->method (rw.fail-trace hypbox term iffp))
'fail))
(defthm rw.trace->hypbox-of-rw.fail-trace
(equal (rw.trace->hypbox (rw.fail-trace hypbox term iffp))
hypbox))
(defthm rw.trace->lhs-of-rw.fail-trace
(equal (rw.trace->lhs (rw.fail-trace hypbox term iffp))
term))
(defthm rw.trace->rhs-of-rw.fail-trace
(equal (rw.trace->rhs (rw.fail-trace hypbox term iffp))
term))
(defthm rw.trace->iffp-of-rw.fail-trace
(equal (rw.trace->iffp (rw.fail-trace hypbox term iffp))
iffp))
(defthm rw.trace->subtraces-of-rw.fail-trace
(equal (rw.trace->subtraces (rw.fail-trace hypbox term iffp))
nil))
(defthm rw.trace->extras-of-rw.fail-trace
(equal (rw.trace->extras (rw.fail-trace hypbox term iffp))
nil))
(defthm forcing-rw.tracep-of-rw.fail-trace
(implies (force (and (rw.hypboxp hypbox)
(logic.termp term)
(booleanp iffp)))
(equal (rw.tracep (rw.fail-trace hypbox term iffp))
t)))
(defthm forcing-rw.trace-atblp-of-rw.fail-trace
(implies (force (and (rw.hypbox-atblp hypbox atbl)
(logic.term-atblp term atbl)))
(equal (rw.trace-atblp (rw.fail-trace hypbox term iffp) atbl)
t)))
(local (in-theory (disable rw.fail-trace)))
(defthm rw.fail-tracep-of-rw.fail-trace
(equal (rw.fail-tracep (rw.fail-trace hypbox term iffp))
t)
:hints(("Goal" :in-theory (enable rw.fail-tracep))))
(defthm rw.trace-step-okp-of-rw.fail-trace
(equal (rw.trace-step-okp (rw.fail-trace hypbox term iffp) defs)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-okp))))
(defthm rw.trace-step-env-okp-of-rw.fail-trace
(equal (rw.trace-step-env-okp (rw.fail-trace hypbox term iffp) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp))))
(defthm forcing-rw.trace-okp-of-rw.fail-trace
(equal (rw.trace-okp (rw.fail-trace hypbox term iffp) defs)
t)
:hints(("Goal" :in-theory (enable definition-of-rw.trace-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.fail-trace
(equal (rw.trace-env-okp (rw.fail-trace hypbox term iffp) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable definition-of-rw.trace-env-okp))))
(defthm rw.collect-forced-goals-of-rw.fail-trace
(equal (rw.collect-forced-goals (rw.fail-trace hypbox term iffp))
nil)
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.transitivity-trace (x y)
(declare (xargs :guard (and (rw.tracep x)
(rw.tracep y)
(equal (rw.trace->iffp x) (rw.trace->iffp y))
(equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(equal (rw.trace->rhs x) (rw.trace->lhs y)))))
;; Historical note. Originally I checked to see if x.lhs == y.rhs, and if so
;; just used a fail trace. Now I drop this optimization in favor of having
;; consistent fgoals, which helps in the proof of the fast rewriter.
(let ((a (rw.trace->lhs x))
(c (rw.trace->rhs y))
(hypbox (rw.trace->hypbox x))
(iffp (rw.trace->iffp x)))
(rw.trace 'transitivity hypbox a c iffp (list x y) nil)))
(encapsulate
()
(local (in-theory (enable rw.transitivity-trace)))
(defthm rw.transitivity-trace-under-iff
(iff (rw.transitivity-trace x y)
t))
(defthm rw.trace->method-of-rw.transitivity-trace
(equal (rw.trace->method (rw.transitivity-trace x y))
'transitivity))
(defthm rw.trace->hypbox-of-rw.transitivity-trace
(equal (rw.trace->hypbox (rw.transitivity-trace x y))
(rw.trace->hypbox x)))
(defthm rw.trace->lhs-of-rw.transitivity-trace
(equal (rw.trace->lhs (rw.transitivity-trace x y))
(rw.trace->lhs x)))
(defthm rw.trace->rhs-of-rw.transitivity-trace
(equal (rw.trace->rhs (rw.transitivity-trace x y))
(rw.trace->rhs y)))
(defthm rw.trace->iffp-of-rw.transitivity-trace
(equal (rw.trace->iffp (rw.transitivity-trace x y))
(rw.trace->iffp x)))
(defthm rw.trace->subtraces-of-rw.transitivity-trace
(equal (rw.trace->subtraces (rw.transitivity-trace x y))
(list x y)))
(defthm rw.trace->extras-of-rw.transitivity-trace
(equal (rw.trace->extras (rw.transitivity-trace x y))
nil))
(defthm forcing-rw.tracep-of-rw.transitivity-trace
(implies (force (and (rw.tracep x)
(rw.tracep y)))
(equal (rw.tracep (rw.transitivity-trace x y))
t)))
(defthm forcing-rw.trace-atblp-of-rw.transitivity-trace
(implies (force (and (rw.trace-atblp x atbl)
(rw.trace-atblp y atbl)))
(equal (rw.trace-atblp (rw.transitivity-trace x y) atbl)
t)))
(local (in-theory (disable rw.transitivity-trace)))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.transitivity-trace
(implies (force (and (equal (rw.trace->iffp x) (rw.trace->iffp y))
(equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(equal (rw.trace->rhs x) (rw.trace->lhs y))))
(equal (rw.trace-step-okp (rw.transitivity-trace x y) defs)
t))
:hints(("Goal"
:in-theory (enable rw.transitivity-tracep)
:expand (rw.trace-step-okp (rw.transitivity-trace x y) defs))))
(defthm forcing-rw.trace-okp-of-rw.transitivity-trace
(implies (force (and (equal (rw.trace->iffp x) (rw.trace->iffp y))
(equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(equal (rw.trace->rhs x) (rw.trace->lhs y))
(rw.trace-okp x defs)
(rw.trace-okp y defs)))
(equal (rw.trace-okp (rw.transitivity-trace x y) defs)
t))
:hints(("Goal"
:expand ((rw.trace-okp (rw.transitivity-trace x y) defs))
:in-theory (enable lemma-forcing-rw.trace-step-okp-of-rw.transitivity-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.transitivity-trace
(equal (rw.trace-step-env-okp (rw.transitivity-trace x y) defs thms atbl)
t)
:hints(("Goal"
:in-theory (enable rw.transitivity-tracep)
:expand (rw.trace-step-env-okp (rw.transitivity-trace x y) defs thms atbl))))
(defthm forcing-rw.trace-env-okp-of-rw.transitivity-trace
(implies (force (and (rw.trace-env-okp x defs thms atbl)
(rw.trace-env-okp y defs thms atbl)))
(equal (rw.trace-env-okp (rw.transitivity-trace x y) defs thms atbl)
t))
:hints(("Goal"
:expand (rw.trace-env-okp (rw.transitivity-trace x y) defs thms atbl)
:in-theory (enable lemma-forcing-rw.trace-step-env-okp-of-rw.transitivity-trace))))
(defthm rw.collect-forced-goals-of-rw.transitivity-trace
(equal (rw.collect-forced-goals (rw.transitivity-trace x y))
(fast-merge (rw.collect-forced-goals x)
(rw.collect-forced-goals y)))
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.equiv-by-args-trace (hypbox f iffp traces)
(declare (xargs :guard (and (rw.hypboxp hypbox)
(logic.function-namep f)
(booleanp iffp)
(rw.trace-listp traces)
(all-equalp nil (rw.trace-list-iffps traces))
(all-equalp hypbox (rw.trace-list-hypboxes traces)))))
(let ((lhses (rw.trace-list-lhses traces))
(rhses (rw.trace-list-rhses traces)))
(rw.trace 'equiv-by-args
hypbox
(logic.function f lhses)
(logic.function f rhses)
iffp
traces
nil)))
(encapsulate
()
(local (in-theory (enable rw.equiv-by-args-trace)))
(defthm lemma-rw.trace->method-of-rw.equiv-by-args-trace
(equal (rw.trace->method (rw.equiv-by-args-trace hypbox f iffp traces))
'equiv-by-args))
(defthm forcing-rw.trace->hypbox-of-rw.equiv-by-args-trace
(equal (rw.trace->hypbox (rw.equiv-by-args-trace hypbox f iffp traces))
hypbox))
(defthm forcing-rw.trace->lhs-of-rw.equiv-by-args-trace
(equal (rw.trace->lhs (rw.equiv-by-args-trace hypbox f iffp traces))
(logic.function f (rw.trace-list-lhses traces)))
:hints(("Goal" :in-theory (disable equal-of-logic.function-rewrite))))
(defthm forcing-rw.trace->rhs-of-rw.equiv-by-args-trace
(equal (rw.trace->rhs (rw.equiv-by-args-trace hypbox f iffp traces))
(logic.function f (rw.trace-list-rhses traces)))
:hints(("Goal" :in-theory (disable equal-of-logic.function-rewrite))))
(defthm rw.trace->iffp-of-rw.equiv-by-args-trace
(equal (rw.trace->iffp (rw.equiv-by-args-trace hypbox f iffp traces))
iffp))
(defthm rw.trace->subtraces-of-rw.equiv-by-args-trace
(equal (rw.trace->subtraces (rw.equiv-by-args-trace hypbox f iffp traces))
traces))
(defthm rw.trace->extras-of-rw.equiv-by-args-trace
(equal (rw.trace->extras (rw.equiv-by-args-trace hypbox f iffp traces))
nil))
(defthm forcing-rw.tracep-of-rw.equiv-by-args-trace
(implies (force (and (rw.hypboxp hypbox)
(logic.function-namep f)
(booleanp iffp)
(rw.trace-listp traces)))
(equal (rw.tracep (rw.equiv-by-args-trace hypbox f iffp traces))
t)))
(defthm forcing-rw.trace-atblp-of-rw.equiv-by-args-trace
(implies (force (and (rw.hypbox-atblp hypbox atbl)
(logic.function-namep f)
(equal (len traces) (cdr (lookup f atbl)))
(rw.trace-list-atblp traces atbl)))
(equal (rw.trace-atblp (rw.equiv-by-args-trace hypbox f iffp traces) atbl)
t)))
(local (in-theory (disable rw.equiv-by-args-trace)))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.equiv-by-args-trace
(implies (force (and (logic.function-namep f)
(all-equalp hypbox (rw.trace-list-hypboxes traces))
(all-equalp nil (rw.trace-list-iffps traces))))
(equal (rw.trace-step-okp (rw.equiv-by-args-trace hypbox f iffp traces) defs)
t))
:hints(("Goal" :in-theory (enable rw.equiv-by-args-tracep rw.trace-step-okp))))
(defthm forcing-rw.trace-okp-of-rw.equiv-by-args-trace
(implies (force (and (logic.function-namep f)
(all-equalp hypbox (rw.trace-list-hypboxes traces))
(all-equalp nil (rw.trace-list-iffps traces))
(rw.trace-list-okp traces defs)))
(equal (rw.trace-okp (rw.equiv-by-args-trace hypbox f iffp traces) defs)
t))
:hints(("Goal"
:in-theory (enable definition-of-rw.trace-okp
lemma-forcing-rw.trace-step-okp-of-rw.equiv-by-args-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.equiv-by-args-trace
(equal (rw.trace-step-env-okp (rw.equiv-by-args-trace hypbox f iffp traces) defs thms abtl)
t)
:hints(("Goal" :in-theory (enable rw.equiv-by-args-tracep rw.trace-step-env-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.equiv-by-args-trace
(implies (force (rw.trace-list-env-okp traces defs thms atbl))
(equal (rw.trace-env-okp (rw.equiv-by-args-trace hypbox f iffp traces) defs thms atbl)
t))
:hints(("Goal" :in-theory (enable definition-of-rw.trace-env-okp
lemma-forcing-rw.trace-step-env-okp-of-rw.equiv-by-args-trace))))
(defthm rw.collect-forced-goals-of-rw.equiv-by-args-trace
(equal (rw.collect-forced-goals (rw.equiv-by-args-trace hypbox f iffp traces))
(rw.collect-forced-goals-list traces))
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.lambda-equiv-by-args-trace (hypbox formals body iffp traces)
(declare (xargs :guard (and (rw.hypboxp hypbox)
(true-listp formals)
(logic.variable-listp formals)
(uniquep formals)
(logic.termp body)
(subsetp (logic.term-vars body) formals)
(booleanp iffp)
(rw.trace-listp traces)
(all-equalp hypbox (rw.trace-list-hypboxes traces))
(all-equalp nil (rw.trace-list-iffps traces))
(equal (len traces) (len formals)))))
(let ((lhses (rw.trace-list-lhses traces))
(rhses (rw.trace-list-rhses traces)))
; same rationale as before.
;(if (equal lhses rhses)
; (rw.fail-trace hypbox (logic.lambda formals body lhses) iffp)
(rw.trace 'lambda-equiv-by-args
hypbox
(logic.lambda formals body lhses)
(logic.lambda formals body rhses)
iffp
traces
nil)))
(encapsulate
()
(local (in-theory (enable rw.lambda-equiv-by-args-trace)))
(defthm rw.trace->method-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace->method (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
'lambda-equiv-by-args))
(defthm rw.trace->hypbox-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace->hypbox (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
hypbox))
(defthm rw.trace->lhs-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace->lhs (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
(logic.lambda formals body (rw.trace-list-lhses traces))))
(defthm rw.trace->rhs-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace->rhs (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
(logic.lambda formals body (rw.trace-list-rhses traces))))
(defthm rw.trace->iffp-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace->iffp (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
iffp))
(defthm rw.trace->subtraces-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace->subtraces (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
traces))
(defthm rw.trace->extras-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace->extras (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
nil))
(defthm forcing-rw.tracep-of-rw.lambda-equiv-by-args-trace
(implies (force (and (rw.hypboxp hypbox)
(true-listp formals)
(logic.variable-listp formals)
(uniquep formals)
(logic.termp body)
(subsetp (logic.term-vars body) formals)
(booleanp iffp)
(rw.trace-listp traces)
(equal (len traces) (len formals))))
(equal (rw.tracep (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
t)))
(defthm forcing-rw.trace-atblp-of-rw.lambda-equiv-by-args-trace
(implies (force (and (rw.hypbox-atblp hypbox atbl)
(logic.term-atblp body atbl)
(rw.trace-list-atblp traces atbl)))
(equal (rw.trace-atblp (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces) atbl)
t)))
(local (in-theory (disable rw.lambda-equiv-by-args-trace)))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.lambda-equiv-by-args-trace
(implies (force (and (all-equalp nil (rw.trace-list-iffps traces))
(all-equalp hypbox (rw.trace-list-hypboxes traces))))
(equal (rw.trace-step-okp (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces) defs)
t))
:hints(("Goal" :in-theory (e/d (rw.trace-step-okp
rw.lambda-equiv-by-args-tracep)
(forcing-logic.termp-of-logic.lambda)))))
(defthm forcing-rw.trace-okp-of-rw.lambda-equiv-by-args-trace
(implies (force (and (all-equalp nil (rw.trace-list-iffps traces))
(all-equalp hypbox (rw.trace-list-hypboxes traces))
(rw.trace-list-okp traces defs)))
(equal (rw.trace-okp (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces) defs)
t))
:hints(("Goal" :in-theory (enable definition-of-rw.trace-okp
lemma-forcing-rw.trace-step-okp-of-rw.lambda-equiv-by-args-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.lambda-equiv-by-args-trace
(equal (rw.trace-step-env-okp (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp rw.lambda-equiv-by-args-tracep))))
(defthm forcing-rw.trace-env-okp-of-rw.lambda-equiv-by-args-trace
(implies (force (rw.trace-list-env-okp traces defs thms atbl))
(equal (rw.trace-env-okp (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces) defs thms atbl)
t))
:hints(("Goal" :in-theory (enable definition-of-rw.trace-env-okp
lemma-forcing-rw.trace-step-env-okp-of-rw.lambda-equiv-by-args-trace))))
(defthm rw.collect-forced-goals-of-rw.lambda-equiv-by-args-trace
(equal (rw.collect-forced-goals (rw.lambda-equiv-by-args-trace hypbox formals body iffp traces))
(rw.collect-forced-goals-list traces))
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.beta-reduction-trace (hypbox term iffp)
(declare (xargs :guard (and (rw.hypboxp hypbox)
(logic.termp term)
(logic.lambdap term)
(booleanp iffp))))
(rw.trace 'beta-reduction
hypbox
term
(logic.substitute (logic.lambda-body term)
(pair-lists (logic.lambda-formals term)
(logic.lambda-actuals term)))
iffp
nil
nil))
(encapsulate
()
(local (in-theory (enable rw.beta-reduction-trace)))
(defthm rw.trace->method-of-rw.beta-reduction-trace
(equal (rw.trace->method (rw.beta-reduction-trace hypbox term iffp))
'beta-reduction))
(defthm rw.trace->hypbox-of-rw.beta-reduction-trace
(equal (rw.trace->hypbox (rw.beta-reduction-trace hypbox term iffp))
hypbox))
(defthm rw.trace->lhs-of-rw.beta-reduction-trace
(equal (rw.trace->lhs (rw.beta-reduction-trace hypbox term iffp))
term))
(defthm rw.trace->rhs-of-rw.beta-reduction-trace
(equal (rw.trace->rhs (rw.beta-reduction-trace hypbox term iffp))
(logic.substitute (logic.lambda-body term)
(pair-lists (logic.lambda-formals term)
(logic.lambda-actuals term)))))
(defthm rw.trace->iffp-of-rw.beta-reduction-trace
(equal (rw.trace->iffp (rw.beta-reduction-trace hypbox term iffp))
iffp))
(defthm rw.trace->subtraces-of-rw.beta-reduction-trace
(equal (rw.trace->subtraces (rw.beta-reduction-trace hypbox term iffp))
nil))
(defthm rw.trace->extras-of-rw.beta-reduction-trace
(equal (rw.trace->extras (rw.beta-reduction-trace hypbox term iffp))
nil))
(defthm forcing-rw.tracep-of-rw.beta-reduction-trace
(implies (force (and (rw.hypboxp hypbox)
(logic.termp term)
(logic.lambdap term)
(booleanp iffp)))
(equal (rw.tracep (rw.beta-reduction-trace hypbox term iffp))
t)))
(defthm forcing-rw.trace-atblp-of-rw.beta-reduction-trace
(implies (force (and (rw.hypbox-atblp hypbox atbl)
(logic.lambdap term)
(logic.termp term)
(logic.term-atblp term atbl)))
(equal (rw.trace-atblp (rw.beta-reduction-trace hypbox term iffp) atbl)
t)))
(local (in-theory (disable rw.beta-reduction-trace)))
(defthmd lemma-forcing-rw.beta-reduction-tracep-of-rw.beta-reduction-trace
(implies (force (logic.lambdap term))
(equal (rw.beta-reduction-tracep (rw.beta-reduction-trace hypbox term iffp))
t))
:hints(("Goal" :in-theory (enable rw.beta-reduction-tracep))))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.beta-reduction-trace
(implies (force (logic.lambdap term))
(equal (rw.trace-step-okp (rw.beta-reduction-trace hypbox term iffp) defs)
t))
:hints(("Goal" :in-theory (enable rw.trace-step-okp
lemma-forcing-rw.beta-reduction-tracep-of-rw.beta-reduction-trace))))
(defthm forcing-rw.trace-okp-of-rw.beta-reduction-trace
(implies (force (logic.lambdap term))
(equal (rw.trace-okp (rw.beta-reduction-trace hypbox term iffp) defs)
t))
:hints(("Goal" :in-theory (enable definition-of-rw.trace-okp
lemma-forcing-rw.trace-step-okp-of-rw.beta-reduction-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.beta-reduction-trace
(equal (rw.trace-step-env-okp (rw.beta-reduction-trace hypbox term iffp) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.beta-reduction-trace
(equal (rw.trace-env-okp (rw.beta-reduction-trace hypbox term iffp) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable definition-of-rw.trace-env-okp
lemma-forcing-rw.trace-step-env-okp-of-rw.beta-reduction-trace))))
(defthm rw.collect-forced-goals-of-rw.beta-reduction-trace
(equal (rw.collect-forced-goals (rw.beta-reduction-trace hypbox term iffp))
nil)
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.try-ground-simplify (hypbox x iffp control)
(declare (xargs :guard (and (rw.hypboxp hypbox)
(logic.termp x)
(logic.groundp x)
(booleanp iffp)
(rw.controlp control))))
(if (and (logic.functionp x)
(memberp (logic.function-name x) (rw.control->noexec control)))
nil
(let* ((defs (rw.control->defs control))
(depth (rw.control->depth control))
(result (generic-evaluator x defs depth)))
(and result
(let ((real-result (if (and iffp (not (equal (logic.unquote result) nil)))
''t
result)))
(and (not (equal real-result x))
(rw.trace 'ground hypbox x real-result iffp nil depth)))))))
(encapsulate
()
(local (in-theory (enable rw.try-ground-simplify)))
(defthm rw.trace->method-of-rw.try-ground-simplify
(implies (force (rw.try-ground-simplify hypbox x iffp control))
(equal (rw.trace->method (rw.try-ground-simplify hypbox x iffp control))
'ground)))
(defthm rw.trace->hypbox-of-rw.try-ground-simplify
(implies (force (rw.try-ground-simplify hypbox x iffp control))
(equal (rw.trace->hypbox (rw.try-ground-simplify hypbox x iffp control))
hypbox)))
(defthm forcing-rw.trace->lhs-of-rw.try-ground-simplify
(implies (force (rw.try-ground-simplify hypbox x iffp control))
(equal (rw.trace->lhs (rw.try-ground-simplify hypbox x iffp control))
x)))
(defthm forcing-rw.trace->iffp-of-rw.try-ground-simplify
(implies (force (rw.try-ground-simplify hypbox x iffp control))
(equal (rw.trace->iffp (rw.try-ground-simplify hypbox x iffp control))
iffp)))
(defthm rw.trace->subtraces-of-rw.try-ground-simplify
(implies (force (rw.try-ground-simplify hypbox x iffp control))
(equal (rw.trace->subtraces (rw.try-ground-simplify hypbox x iffp control))
nil)))
(defthm forcing-rw.trace->extras-of-rw.try-ground-simplify
(implies (force (rw.try-ground-simplify hypbox x iffp control))
(equal (rw.trace->extras (rw.try-ground-simplify hypbox x iffp control))
(rw.control->depth control))))
(defthmd lemma-forcing-logic.constantp-of-rw.trace->rhs
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(logic.termp x)
(rw.controlp control)))
(equal (logic.constantp (rw.trace->rhs (rw.try-ground-simplify hypbox x iffp control)))
t)))
(defthm forcing-rw.tracep-of-rw.try-ground-simplify
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(rw.hypboxp hypbox)
(logic.termp x)
(logic.groundp x)
(booleanp iffp)
(rw.controlp control)))
(equal (rw.tracep (rw.try-ground-simplify hypbox x iffp control))
t)))
(defthm forcing-rw.trace-atblp-of-rw.try-ground-simplify
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(rw.hypbox-atblp hypbox atbl)
(logic.term-atblp x atbl)
(logic.termp x)
(rw.controlp control)))
(equal (rw.trace-atblp (rw.try-ground-simplify hypbox x iffp control) atbl)
t)))
(defthmd lemma-forcing-rw.ground-tracep-of-rw.try-ground-simplify
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(logic.groundp x)
(rw.controlp control)))
(equal (rw.ground-tracep (rw.try-ground-simplify hypbox x iffp control)
(rw.control->defs control))
t))
:hints(("Goal" :in-theory (enable rw.ground-tracep))))
(local (in-theory (disable rw.try-ground-simplify)))
(local (in-theory (enable lemma-forcing-logic.constantp-of-rw.trace->rhs
lemma-forcing-rw.ground-tracep-of-rw.try-ground-simplify)))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.try-ground-simplify
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(logic.groundp x)
(rw.controlp control)))
(equal (rw.trace-step-okp (rw.try-ground-simplify hypbox x iffp control)
(rw.control->defs control))
t))
:hints(("Goal" :in-theory (enable rw.trace-step-okp))))
(defthm forcing-rw.trace-okp-of-rw.try-ground-simplify
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(logic.groundp x)
(rw.controlp control)))
(equal (rw.trace-okp (rw.try-ground-simplify hypbox x iffp control)
(rw.control->defs control))
t))
:hints(("Goal" :in-theory (enable definition-of-rw.trace-okp
lemma-forcing-rw.trace-step-okp-of-rw.try-ground-simplify))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.try-ground-simplify
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(logic.groundp x)
(rw.controlp control)
(rw.control-atblp control atbl)))
(equal (rw.trace-step-env-okp (rw.try-ground-simplify hypbox x iffp control)
defs thms atbl)
t))
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.try-ground-simplify
(implies (force (and (rw.try-ground-simplify hypbox x iffp control)
(logic.groundp x)
(rw.controlp control)
(rw.control-atblp control atbl)))
(equal (rw.trace-env-okp (rw.try-ground-simplify hypbox x iffp control) defs thms atbl)
t))
:hints(("Goal" :in-theory (enable definition-of-rw.trace-env-okp
lemma-forcing-rw.trace-step-env-okp-of-rw.try-ground-simplify))))
(defthm forcing-rw.collect-forced-goals-of-rw.try-ground-simplify
(implies (force (rw.try-ground-simplify hypbox x iffp control))
(equal (rw.collect-forced-goals (rw.try-ground-simplify hypbox x iffp control))
nil))
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.if-specialcase-nil-trace (x y b1)
(declare (xargs :guard (and (rw.tracep x)
(rw.tracep y)
(equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(logic.termp b1)
(rw.trace->iffp x)
(equal (rw.trace->rhs x) ''nil))))
(rw.trace 'if-specialcase-nil
(rw.trace->hypbox x)
(logic.function 'if (list (rw.trace->lhs x) b1 (rw.trace->lhs y)))
(rw.trace->rhs y)
(rw.trace->iffp y)
(list x y)
nil))
(encapsulate
()
(local (in-theory (enable rw.if-specialcase-nil-trace)))
(defthm rw.trace->method-of-rw.if-specialcase-nil-trace
(equal (rw.trace->method (rw.if-specialcase-nil-trace x y b1))
'if-specialcase-nil))
(defthm rw.trace->hypbox-of-rw.if-specialcase-nil-trace
(equal (rw.trace->hypbox (rw.if-specialcase-nil-trace x y b1))
(rw.trace->hypbox x)))
(defthm rw.trace->lhs-of-rw.if-specialcase-nil-trace
(equal (rw.trace->lhs (rw.if-specialcase-nil-trace x y b1))
(logic.function 'if (list (rw.trace->lhs x) b1 (rw.trace->lhs y)))))
(defthm rw.trace->rhs-of-rw.if-specialcase-nil-trace
(equal (rw.trace->rhs (rw.if-specialcase-nil-trace x y b1))
(rw.trace->rhs y)))
(defthm rw.trace->iffp-of-rw.if-specialcase-nil-trace
(equal (rw.trace->iffp (rw.if-specialcase-nil-trace x y b1))
(rw.trace->iffp y)))
(defthm rw.trace->subtraces-of-rw.if-specialcase-nil-trace
(equal (rw.trace->subtraces (rw.if-specialcase-nil-trace x y b1))
(list x y)))
(defthm rw.trace->extras-of-rw.if-specialcase-nil-trace
(equal (rw.trace->extras (rw.if-specialcase-nil-trace x y b1))
nil))
(defthm forcing-rw.tracep-of-rw.if-specialcase-nil-trace
(implies (force (and (rw.tracep x)
(rw.tracep y)
(logic.termp b1)))
(equal (rw.tracep (rw.if-specialcase-nil-trace x y b1))
t)))
(defthm forcing-rw.trace-atblp-of-rw.if-specialcase-nil-trace
(implies (force (and (rw.trace-atblp x atbl)
(rw.trace-atblp y atbl)
(logic.term-atblp b1 atbl)
(equal (cdr (lookup 'if atbl)) 3)))
(equal (rw.trace-atblp (rw.if-specialcase-nil-trace x y b1) atbl)
t)))
(local (in-theory (disable rw.if-specialcase-nil-trace)))
(defthmd lemma-forcing-rw.if-specialcase-nil-tracep-of-rw.if-specialcase-nil-trace
(implies (force (and (equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(rw.trace->iffp x)
(equal (rw.trace->rhs x) ''nil)))
(equal (rw.if-specialcase-nil-tracep (rw.if-specialcase-nil-trace x y b1))
t))
:hints(("Goal" :in-theory (enable rw.if-specialcase-nil-tracep))))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.if-specialcase-nil-trace
(implies (force (and (equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(rw.trace->iffp x)
(equal (rw.trace->rhs x) ''nil)))
(equal (rw.trace-step-okp (rw.if-specialcase-nil-trace x y b1) defs)
t))
:hints(("Goal" :in-theory (enable rw.trace-step-okp
lemma-forcing-rw.if-specialcase-nil-tracep-of-rw.if-specialcase-nil-trace))))
(defthm forcing-rw.trace-okp-of-rw.if-specialcase-nil-trace
(implies (force (and (equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(rw.trace->iffp x)
(equal (rw.trace->rhs x) ''nil)
(rw.trace-okp x defs)
(rw.trace-okp y defs)))
(equal (rw.trace-okp (rw.if-specialcase-nil-trace x y b1) defs)
t))
:hints(("Goal"
:expand ((rw.trace-okp (rw.if-specialcase-nil-trace x y b1) defs))
:in-theory (enable lemma-forcing-rw.trace-step-okp-of-rw.if-specialcase-nil-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.if-specialcase-nil-trace
(equal (rw.trace-step-env-okp (rw.if-specialcase-nil-trace x y b1) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.if-specialcase-nil-trace
(implies (force (and (rw.trace-env-okp x defs thms atbl)
(rw.trace-env-okp y defs thms atbl)))
(equal (rw.trace-env-okp (rw.if-specialcase-nil-trace x y b1) defs thms atbl)
t))
:hints(("Goal"
:expand ((rw.trace-env-okp (rw.if-specialcase-nil-trace x y b1) defs thms atbl))
:in-theory (enable lemma-forcing-rw.trace-step-env-okp-of-rw.if-specialcase-nil-trace))))
(defthm rw.collect-forced-goals-of-rw.if-specialcase-nil-trace
(equal (rw.collect-forced-goals (rw.if-specialcase-nil-trace x y b1))
(fast-merge (rw.collect-forced-goals x)
(rw.collect-forced-goals y)))
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.if-specialcase-t-trace (x y c1)
(declare (xargs :guard (and (rw.tracep x)
(rw.tracep y)
(logic.termp c1)
(equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(rw.trace->iffp x)
(logic.constantp (rw.trace->rhs x))
(not (equal (logic.unquote (rw.trace->rhs x)) nil)))))
(rw.trace 'if-specialcase-t
(rw.trace->hypbox x)
(logic.function 'if (list (rw.trace->lhs x) (rw.trace->lhs y) c1))
(rw.trace->rhs y)
(rw.trace->iffp y)
(list x y)
nil))
(encapsulate
()
(local (in-theory (enable rw.if-specialcase-t-trace)))
(defthm rw.trace->method-of-rw.if-specialcase-t-trace
(equal (rw.trace->method (rw.if-specialcase-t-trace x y c1))
'if-specialcase-t))
(defthm rw.trace->hypbox-of-rw.if-specialcase-t-trace
(equal (rw.trace->hypbox (rw.if-specialcase-t-trace x y c1))
(rw.trace->hypbox x)))
(defthm rw.trace->lhs-of-rw.if-specialcase-t-trace
(equal (rw.trace->lhs (rw.if-specialcase-t-trace x y c1))
(logic.function 'if (list (rw.trace->lhs x) (rw.trace->lhs y) c1))))
(defthm rw.trace->rhs-of-rw.if-specialcase-t-trace
(equal (rw.trace->rhs (rw.if-specialcase-t-trace x y c1))
(rw.trace->rhs y)))
(defthm rw.trace->iffp-of-rw.if-specialcase-t-trace
(equal (rw.trace->iffp (rw.if-specialcase-t-trace x y c1))
(rw.trace->iffp y)))
(defthm rw.trace->subtraces-of-rw.if-specialcase-t-trace
(equal (rw.trace->subtraces (rw.if-specialcase-t-trace x y c1))
(list x y)))
(defthm rw.trace->extras-of-rw.if-specialcase-t-trace
(equal (rw.trace->extras (rw.if-specialcase-t-trace x y c1))
nil))
(defthm forcing-rw.tracep-of-rw.if-specialcase-t-trace
(implies (force (and (rw.tracep x)
(rw.tracep y)
(logic.termp c1)))
(equal (rw.tracep (rw.if-specialcase-t-trace x y c1))
t)))
(defthm forcing-rw.trace-atblp-of-rw.if-specialcase-t-trace
(implies (force (and (rw.trace-atblp x atbl)
(rw.trace-atblp y atbl)
(logic.term-atblp c1 atbl)
(equal (cdr (lookup 'if atbl)) 3)))
(equal (rw.trace-atblp (rw.if-specialcase-t-trace x y c1) atbl)
t)))
(local (in-theory (disable rw.if-specialcase-t-trace)))
(defthmd lemma-forcing-rw.if-specialcase-t-tracep-of-rw.if-specialcase-t-trace
(implies (force (and (equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(rw.trace->iffp x)
(logic.constantp (rw.trace->rhs x))
(not (equal (logic.unquote (rw.trace->rhs x)) nil))))
(equal (rw.if-specialcase-t-tracep (rw.if-specialcase-t-trace x y c1))
t))
:hints(("Goal" :in-theory (enable rw.if-specialcase-t-tracep))))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.if-specialcase-t-trace
(implies (force (and (equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(rw.trace->iffp x)
(logic.constantp (rw.trace->rhs x))
(not (equal (logic.unquote (rw.trace->rhs x)) nil))))
(equal (rw.trace-step-okp (rw.if-specialcase-t-trace x y c1) defs)
t))
:hints(("Goal" :in-theory (enable rw.trace-step-okp
lemma-forcing-rw.if-specialcase-t-tracep-of-rw.if-specialcase-t-trace))))
(defthm forcing-rw.trace-okp-of-rw.if-specialcase-t-trace
(implies (force (and (equal (rw.trace->hypbox x) (rw.trace->hypbox y))
(rw.trace->iffp x)
(logic.constantp (rw.trace->rhs x))
(not (equal (logic.unquote (rw.trace->rhs x)) nil))
(rw.trace-okp x defs)
(rw.trace-okp y defs)))
(equal (rw.trace-okp (rw.if-specialcase-t-trace x y c1) defs)
t))
:hints(("Goal"
:expand ((rw.trace-okp (rw.if-specialcase-t-trace x y c1) defs))
:in-theory (enable lemma-forcing-rw.trace-step-okp-of-rw.if-specialcase-t-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.if-specialcase-t-trace
(equal (rw.trace-step-env-okp (rw.if-specialcase-t-trace x y c1) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.if-specialcase-t-trace
(implies (force (and (rw.trace-env-okp x defs thms atbl)
(rw.trace-env-okp y defs thms atbl)))
(equal (rw.trace-env-okp (rw.if-specialcase-t-trace x y c1) defs thms atbl)
t))
:hints(("Goal"
:expand ((rw.trace-env-okp (rw.if-specialcase-t-trace x y c1) defs thms atbl))
:in-theory (enable lemma-forcing-rw.trace-step-env-okp-of-rw.if-specialcase-t-trace))))
(defthm rw.collect-forced-goals-of-rw.if-specialcase-t-trace
(equal (rw.collect-forced-goals (rw.if-specialcase-t-trace x y c1))
(fast-merge (rw.collect-forced-goals x)
(rw.collect-forced-goals y)))
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.not-trace (x iffp)
(declare (xargs :guard (and (rw.tracep x)
(booleanp iffp)
(rw.trace->iffp x))))
(rw.trace 'not
(rw.trace->hypbox x)
(logic.function 'not (list (rw.trace->lhs x)))
(let ((rhs (rw.trace->rhs x)))
(cond ((equal rhs ''nil) ''t)
((equal rhs ''t) ''nil)
(t (logic.function 'not (list rhs)))))
iffp
(list x)
nil))
(encapsulate
()
(local (in-theory (enable rw.not-trace)))
(defthm rw.trace->method-of-rw.not-trace
(equal (rw.trace->method (rw.not-trace x iffp))
'not))
(defthm rw.trace->hypbox-of-rw.not-trace
(equal (rw.trace->hypbox (rw.not-trace x iffp))
(rw.trace->hypbox x))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->lhs-of-rw.not-trace
(equal (rw.trace->lhs (rw.not-trace x iffp))
(logic.function 'not (list (rw.trace->lhs x))))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthmd lemma-rw.trace->rhs-of-rw.not-trace
(equal (rw.trace->rhs (rw.not-trace x iffp))
(cond ((and (equal (rw.trace->lhs x) (rw.trace->rhs x))
(not (equal (rw.trace->rhs x) ''t))
(not (equal (rw.trace->rhs x) ''nil)))
(logic.function 'not (list (rw.trace->rhs x))))
((equal (rw.trace->rhs x) ''nil)
''t)
((equal (rw.trace->rhs x) ''t)
''nil)
(t
(logic.function 'not (list (rw.trace->rhs x))))))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm forcing-rw.trace->iffp-of-rw.not-trace
(equal (rw.trace->iffp (rw.not-trace x iffp))
iffp)
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->subtraces-of-rw.not-trace
(equal (rw.trace->subtraces (rw.not-trace x iffp))
(list x))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->extras-of-rw.not-trace
(equal (rw.trace->extras (rw.not-trace x iffp))
nil)
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm forcing-rw.tracep-of-rw.not-trace
(implies (force (and (rw.tracep x)
(booleanp iffp)))
(equal (rw.tracep (rw.not-trace x iffp))
t)))
(defthm forcing-rw.trace-atblp-of-rw.not-trace
(implies (force (and (rw.trace-atblp x atbl)
(equal (cdr (lookup 'not atbl)) 1)))
(equal (rw.trace-atblp (rw.not-trace x iffp) atbl)
t))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(local (in-theory (disable rw.not-trace)))
(local (in-theory (enable lemma-rw.trace->rhs-of-rw.not-trace)))
(defthmd lemma-forcing-rw.not-tracep-of-rw.not-trace
(implies (force (and (rw.tracep x)
(rw.trace->iffp x)))
(equal (rw.not-tracep (rw.not-trace x iffp))
t))
:hints(("Goal" :in-theory (enable rw.not-tracep))))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.not-trace
(implies (force (and (rw.tracep x)
(rw.trace->iffp x)))
(equal (rw.trace-step-okp (rw.not-trace x iffp) defs)
t))
:hints(("Goal" :in-theory (enable rw.trace-step-okp
lemma-forcing-rw.not-tracep-of-rw.not-trace))))
(defthm forcing-rw.trace-okp-of-rw.not-trace
(implies (force (and (rw.tracep x)
(rw.trace-okp x defs)
(rw.trace->iffp x)))
(equal (rw.trace-okp (rw.not-trace x iffp) defs)
t))
:hints(("Goal"
:expand ((rw.trace-okp (rw.not-trace x iffp) defs))
:in-theory (enable lemma-forcing-rw.trace-step-okp-of-rw.not-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.not-trace
(equal (rw.trace-step-env-okp (rw.not-trace x iffp) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.not-trace
(implies (force (and (rw.trace-env-okp x defs thms atbl)
(rw.trace-env-okp y defs thms atbl)
(rw.trace-env-okp z defs thms atbl)))
(equal (rw.trace-env-okp (rw.not-trace x iffp) defs thms atbl)
t))
:hints(("Goal"
:expand ((rw.trace-env-okp (rw.not-trace x iffp) defs thms atbl))
:in-theory (enable lemma-forcing-rw.trace-step-env-okp-of-rw.not-trace))))
(defthm rw.collect-forced-goals-of-rw.not-trace
(equal (rw.collect-forced-goals (rw.not-trace x iffp))
(rw.collect-forced-goals x))
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defund rw.negative-if-trace (x iffp hypbox)
(declare (xargs :guard (and (logic.termp x)
(booleanp iffp)
(rw.hypboxp hypbox))))
(rw.trace 'negative-if
hypbox
(logic.function 'if (list x ''nil ''t))
(logic.function 'not (list x))
iffp
nil
nil))
(encapsulate
()
(local (in-theory (enable rw.negative-if-trace)))
(defthm rw.trace->method-of-rw.negative-if-trace
(equal (rw.trace->method (rw.negative-if-trace x iffp hypbox))
'negative-if))
(defthm rw.trace->hypbox-of-rw.negative-if-trace
(equal (rw.trace->hypbox (rw.negative-if-trace x iffp hypbox))
hypbox)
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->lhs-of-rw.negative-if-trace
(equal (rw.trace->lhs (rw.negative-if-trace x iffp hypbox))
(logic.function 'if (list x ''nil ''t)))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->rhs-of-rw.negative-if-trace
(equal (rw.trace->rhs (rw.negative-if-trace x iffp hypbox))
(logic.function 'not (list x)))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->iffp-of-rw.negative-if-trace
(equal (rw.trace->iffp (rw.negative-if-trace x iffp hypbox))
iffp)
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->subtraces-of-rw.negative-if-trace
(equal (rw.trace->subtraces (rw.negative-if-trace x iffp hypbox))
nil)
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm rw.trace->extras-of-rw.negative-if-trace
(equal (rw.trace->extras (rw.negative-if-trace x iffp hypbox))
nil)
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(defthm forcing-rw.tracep-of-rw.negative-if-trace
(implies (force (and (logic.termp x)
(booleanp iffp)
(rw.hypboxp hypbox)))
(equal (rw.tracep (rw.negative-if-trace x iffp hypbox))
t)))
(defthm forcing-rw.trace-atblp-of-rw.negative-if-trace
(implies (force (and (logic.term-atblp x atbl)
(rw.hypbox-atblp hypbox atbl)
(equal (cdr (lookup 'not atbl)) 1)
(equal (cdr (lookup 'if atbl)) 3)))
(equal (rw.trace-atblp (rw.negative-if-trace x iffp hypbox) atbl)
t))
:hints(("Goal" :in-theory (disable (:executable-counterpart ACL2::force)))))
(local (in-theory (disable rw.negative-if-trace)))
(defthmd lemma-forcing-rw.negative-if-tracep-of-rw.negative-if-trace
(equal (rw.negative-if-tracep (rw.negative-if-trace x iffp hypbox))
t)
:hints(("Goal" :in-theory (enable rw.negative-if-tracep))))
(defthmd lemma-forcing-rw.trace-step-okp-of-rw.negative-if-trace
(equal (rw.trace-step-okp (rw.negative-if-trace x iffp hypbox) defs)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-okp
lemma-forcing-rw.negative-if-tracep-of-rw.negative-if-trace))))
(defthm forcing-rw.trace-okp-of-rw.negative-if-trace
(equal (rw.trace-okp (rw.negative-if-trace x iffp hypbox) defs)
t)
:hints(("Goal"
:expand ((rw.trace-okp (rw.negative-if-trace x iffp hypbox) defs))
:in-theory (enable lemma-forcing-rw.trace-step-okp-of-rw.negative-if-trace))))
(defthmd lemma-forcing-rw.trace-step-env-okp-of-rw.negative-if-trace
(equal (rw.trace-step-env-okp (rw.negative-if-trace x iffp hypbox) defs thms atbl)
t)
:hints(("Goal" :in-theory (enable rw.trace-step-env-okp))))
(defthm forcing-rw.trace-env-okp-of-rw.negative-if-trace
(equal (rw.trace-env-okp (rw.negative-if-trace x iffp hypbox) defs thms atbl)
t)
:hints(("Goal"
:expand ((rw.trace-env-okp (rw.negative-if-trace x iffp hypbox) defs thms atbl))
:in-theory (enable lemma-forcing-rw.trace-step-env-okp-of-rw.negative-if-trace))))
(defthm rw.collect-forced-goals-of-rw.negative-if-trace
(equal (rw.collect-forced-goals (rw.negative-if-trace x iffp hypbox))
nil)
:hints(("Goal" :in-theory (enable definition-of-rw.collect-forced-goals)))))
(defsection rw.maybe-extend-trace
;; Wrapper to avoid introducing ifs when extending traces.
(defund rw.maybe-extend-trace (original extension)
(declare (xargs :guard (and (rw.tracep original)
(or (not extension)
(and (rw.tracep extension)
(equal (rw.trace->iffp original)
(rw.trace->iffp extension))
(equal (rw.trace->hypbox original)
(rw.trace->hypbox extension))
(equal (rw.trace->rhs original)
(rw.trace->lhs extension)))))))
(if extension
(rw.transitivity-trace original extension)
original))
(defthm forcing-rw.tracep-of-rw.maybe-extend-trace
(implies (force (and (rw.tracep original)
(or (not extension)
(rw.tracep extension))))
(equal (rw.tracep (rw.maybe-extend-trace original extension))
t))
:hints(("Goal" :in-theory (enable rw.maybe-extend-trace))))
(defthm forcing-rw.trace-okp-of-rw.maybe-extend-trace
(implies (force (and (rw.tracep original)
(rw.trace-okp original defs)
(or (not extension)
(and (rw.tracep extension)
(rw.trace-okp extension defs)
(equal (rw.trace->iffp original)
(rw.trace->iffp extension))
(equal (rw.trace->hypbox original)
(rw.trace->hypbox extension))
(equal (rw.trace->rhs original)
(rw.trace->lhs extension))))))
(equal (rw.trace-okp (rw.maybe-extend-trace original extension) defs)
t))
:hints(("Goal" :in-theory (enable rw.maybe-extend-trace))))
(defthm forcing-rw.trace-atblp-of-rw.maybe-extend-trace
(implies (force (and (rw.tracep original)
(rw.trace-atblp original atbl)
(or (not extension)
(and (rw.tracep extension)
(rw.trace-atblp extension atbl)))))
(equal (rw.trace-atblp (rw.maybe-extend-trace original extension) atbl)
t))
:hints(("Goal" :in-theory (enable rw.maybe-extend-trace))))
(defthm forcing-rw.trace-env-okp-of-rw.maybe-extend-trace
(implies (force (and (rw.tracep original)
(rw.trace-env-okp original defs thms atbl)
(or (not extension)
(and (rw.tracep extension)
(rw.trace-env-okp extension defs thms atbl)))))
(equal (rw.trace-env-okp (rw.maybe-extend-trace original extension) defs thms atbl)
t))
:hints(("Goal" :in-theory (enable rw.maybe-extend-trace))))
(defthm forcing-rw.trace->iffp-of-rw.maybe-extend-trace
(implies (force (and (rw.tracep original)
(or (not extension)
(rw.tracep extension))))
(equal (rw.trace->iffp (rw.maybe-extend-trace original extension))
(rw.trace->iffp original)))
:hints(("Goal" :in-theory (enable rw.maybe-extend-trace))))
(defthm forcing-rw.trace->assms-of-rw.maybe-extend-trace
(implies (force (and (rw.tracep original)
(or (not extension)
(rw.tracep extension))))
(equal (rw.trace->hypbox (rw.maybe-extend-trace original extension))
(rw.trace->hypbox original)))
:hints(("Goal" :in-theory (enable rw.maybe-extend-trace))))
(defthm forcing-rw.trace->lhs-of-rw.maybe-extend-trace
(implies (force (and (rw.tracep original)
(or (not extension)
(rw.tracep extension))))
(equal (rw.trace->lhs (rw.maybe-extend-trace original extension))
(rw.trace->lhs original)))
:hints(("Goal" :in-theory (enable rw.maybe-extend-trace)))))
|