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
|
; Copyright (C) 2019, ForrestHunt, Inc.
; Written by Matt Kaufmann and J Moore
; License: A 3-clause BSD license. See the LICENSE file distributed with ACL2.
; See the README file on this directory for an important note concerning the
; weak compatibility of this model with ACL2 Version_8.2 definitions.
; The Maximal Defun of Apply$-Prim
; We define *apply$-primitives*, apply$-primp, and apply$-prim to include
; almost all functions in the bootstrap world that could have badges. We
; intentionally skip a few problematic or silly primitives, like wormhole1
; which has some syntactic restrictions on how it can be called -- restrictions
; that would complicate or confuse any attempt to apply$ 'wormhole1. We also
; introduce and verify a metafunction for simplifying (apply$-prim 'fn args).
; This model of APPLY$-PRIM, i.e., MODAPP::APPLY$-PRIM, handles more primitives
; than the built-in ACL2::APPLY$-PRIM because the model is defined in a fully
; booted ACL2 image while the built-in APPLY$-PRIM is defined before the
; boot-strap process is completed. For example, MODAPP::APPLY$-PRIM can apply
; 'ACL2::APPLY$-PRIM, whereas ACL2::APPLY$-PRIM cannot!
; (depends-on "build/ground-zero-theory.certdep" :dir :system)
(in-package "MODAPP")
; Handling the Primitives
(defun first-order-like-terms-and-out-arities1 (runes avoid-fns wrld ans)
(declare (xargs :mode :program))
; We return a list of the form (... ((fn . formals) . output-arity) ...). See
; first-order-like-terms-and-out-arities for details.
(cond
((endp runes) ans)
(t (let ((fn (base-symbol (car runes))))
(cond
((and (acl2-system-namep fn wrld)
; In ACL2(r), we avoid non-classical functions, to avoid failure of the
; defevaluator event in the book version of apply-prim.lisp.
; But there's a deeper reason to avoid non-classical functions. The logical
; story behind apply$ involves introducing a single mutual-recursion that
; defines apply$ and all functions. See for example
; books/projects/apply-model-2/ex1/doppelgangers.lisp. But ACL2(r) does not
; permit recursive definitions of non-classical functions.
; Even if we could work through that concern, it may well be wrong to give a
; badge to a non-classical function, because the usual test for non-classical
; functions in a body would not notice the first argument of a call, (apply
; 'non-classical-function ...).
#+:non-standard-analysis
(acl2::classicalp fn wrld)
(not (member-eq fn avoid-fns))
(all-nils (getpropc fn 'stobjs-in nil wrld))
; Note that even functions taking state like state-p and global-table-cars,
; i.e., that take a STATE-STATE input, will have STATE in their stobjs-in and
; hence will fail the test just above. So we don't need to give special
; treatment to such functions.
(all-nils (getpropc fn 'stobjs-out nil wrld)))
; Note that stobj creators take no stobjs in but return stobjs. We don't want
; any such functions in our answer! Also, we don't want to think about
; functions like BOUNDP-GLOBAL1 that use STATE-STATE as a formal preventing
; their execution.
(first-order-like-terms-and-out-arities1
(cdr runes)
avoid-fns wrld
(cons (cons (cons fn (formals fn wrld))
(length (getpropc fn 'stobjs-out nil wrld)))
ans)))
(t (first-order-like-terms-and-out-arities1
(cdr runes)
avoid-fns wrld
ans)))))))
; Note: The following list is used to determine ancestral dependence on
; apply$-userfn. But because apply$ calls apply$-userfn, we think it is
; probably most efficient to look for apply$ and ev$ instead of just
; apply$-userfn. Would it be more efficient still to include the loop$ scions
; in this list? On the one hand it would save us from exploring them. On the
; other, we'd the list would be longer and more often than not we wouldn't find
; fn on it anyway. We opt not to include the loop$ scions.
(defconst *apply$-userfn-callers*
'(apply$ ev$ apply$-userfn))
(defconst *blacklisted-apply$-fns*
; Warning: Keep this constant in sync with the value in ACL2 source file
; apply-prim.lisp.
; Warning: Functions that take state, e.g., EV, can't be badged and so are not
; currently listed below. But if and when we relax the conditions on badging
; and support STATE in apply$ we should probably blacklist ev and a bunch of
; other superpowerful :program mode functions!
; The functions listed here are not safe to apply, primarily because their
; behavior differs from their logical definitions.
; This list should contain every defined built-in function symbol that belongs
; to *initial-untouchable-fns* or (strip-cars *ttag-fns*) and doesn't take a
; stobj input. (Those that do take a stobj input aren't currently a concern,
; since they can't be put in a list for apply$, except by way of our careful
; translations of do loop$ expressions.) We check that property in
; check-built-in-constants. These three restrictions need not be enforced here
; because unless a trust tag is used, then only defined functions that avoid
; stobjs can have warrants, and the ttag and untouchable restrictions already
; prevent warrants.
(union-eq
'(SYNP ; restricts arguments
WORMHOLE1 ; restricts arguments
WORMHOLE-EVAL ; restricts arguments
SYNC-EPHEMERAL-WHS-WITH-PERSISTENT-WHS ; restricts arguments
SET-PERSISTENT-WHS-AND-EPHEMERAL-WHS ; restricts arguments
SYS-CALL ; bad -- requires trust tag
HONS-CLEAR! ; bad -- requires trust tag
HONS-WASH! ; bad -- requires trust tag
UNTOUCHABLE-MARKER ; bad -- untouchable
ASET1-TRUSTED ; bad -- untouchable
COERCE-OBJECT-TO-STATE ; bad -- creates live state
CREATE-STATE ; bad -- creates live state
INIT-IPRINT-FAL ; bad -- untouchable
UPDATE-IPRINT-FAL-REC ; bad -- untouchable
UPDATE-IPRINT-FAL ; bad -- untouchable
; At one time we considered disallowing these functions but we now allow them.
; We list them here just to document that we considered them and concluded that
; it is ok to apply$ them.
; MV-LIST ; we now handle multiple values
; MAKE-WORMHOLE-STATUS
; SET-WORMHOLE-DATA
; SET-WORMHOLE-ENTRY-CODE
; WORMHOLE-DATA
; WORMHOLE-ENTRY-CODE
; WORMHOLE-STATUSP
; BREAK$
; PRINT-CALL-HISTORY
; NEVER-MEMOIZE-FN
; MEMOIZE-FORM
; CLEAR-MEMOIZE-STATISTICS
; MEMOIZE-SUMMARY
; CLEAR-MEMOIZE-TABLES
; CLEAR-MEMOIZE-TABLE
)
; See the comment in *avoid-oneify-fns* in the ACL2 sources for why we include
; the following here.
acl2::*avoid-oneify-fns*))
(defun first-order-like-terms-and-out-arities (world)
; Search the world for every ACL2 primitive function that does not traffic (in
; or out) in stobjs or state and that are not among a select few (named below)
; that require trust tags or have syntactic restrictions on their calls. Note
; that our final list includes functions that return multiple values, which are
; not warranted but will have badges: they are first-order-like and could be
; used in the subsequent definitions of warranted functions provided their
; multiple values are ultimately turned into a single returned value.
; Return (... ((fn . formals) . output-arity) ...), that for each identified
; fn, pairs a term, (fn . formals), with its output arity. We will ultimately
; need those terms to generate the defevaluator event that will define
; apply$-prim and to generate the :meta theorem we need. We need the output
; arity in computing the badges of the functions; see
; compute-badge-of-primitives.
; We accumulate the pairs in reverse order, which (it turns out) puts the most
; basic, familiar ACL2 primitives first.
; The ``select few'' we do not collect are prohibited as per the comments
; below. Note: Many functions that we do include actually have no utility in
; this setting. The symbols commented out below were once so identified (by
; manual inspection). E.g., does any user really want to call
; make-wormhole-status via apply$? But if all calls are legal without a trust
; tag, we now include it, just to live up to the name "Maximal".
(declare (xargs :mode :program))
(first-order-like-terms-and-out-arities1
(member-equal '(:DEFINITION ACL2::EV$-LIST)
; This member-equal is not reflected in the actual ACL2 sources and is an
; artifact of this model being built after the complete initialization of the
; system instead of toward the end of the boot-strap. This member-equal call
; produces a tail of the function-theory that eliminates runes near the end of
; ACL2 source file boot-strap-pass-2-b.lisp, added around the end of January,
; 2019 to support loop$, thus eliminating definition runes like
; ACL2::APPLY$-WARRANT-MEMPOS-DEFINITION that do not have corresponding
; function symbols.
(function-theory :here))
*blacklisted-apply$-fns*
world
nil))
; We need to know the names, formals, and output arities of the primitives in
; order to generate the defevaluator form, meta theorem, and badges below. So
; we save them in *first-order-like-terms-and-out-arities*, which looks like:
; (defconst *first-order-like-terms-and-out-arities*
; '(((ACL2-NUMBERP X) . 1)
; ((BAD-ATOM<= X Y) . 1)
; ((BINARY-* X Y) . 1)
; ...))
; But in apply.lisp and in the support for the execution of the stubs
; badge-userfn and apply$-userfn we do not need the formals and we sometimes
; need the arities. So we define another constant which is used in those
; places. That constant, *badge-prim-falist*, is a fast alist.
(make-event
`(defconst *first-order-like-terms-and-out-arities*
',(first-order-like-terms-and-out-arities (w state))))
(defrec apply$-badge (arity out-arity . ilks) nil)
; These constants are not actually used in this book but are used in several
; books that include apply-prim.lisp so we define them once, here.
(defconst *generic-tame-badge-1*
(MAKE APPLY$-BADGE :ARITY 1 :OUT-ARITY 1 :ILKS t))
(defconst *generic-tame-badge-2*
(MAKE APPLY$-BADGE :ARITY 2 :OUT-ARITY 1 :ILKS t))
(defconst *generic-tame-badge-3*
(MAKE APPLY$-BADGE :ARITY 3 :OUT-ARITY 1 :ILKS t))
(defconst *apply$-badge*
(MAKE APPLY$-BADGE :ARITY 2 :OUT-ARITY 1 :ILKS '(:FN NIL)))
(defconst *ev$-badge*
(MAKE APPLY$-BADGE :ARITY 2 :OUT-ARITY 1 :ILKS '(:EXPR NIL)))
(defun compute-badge-of-primitives (terms-and-out-arities)
(cond ((endp terms-and-out-arities) nil)
(t (let* ((term (car (car terms-and-out-arities)))
(fn (ffn-symb term))
(formals (fargs term))
(output-arity (cdr (car terms-and-out-arities))))
(hons-acons fn
(make apply$-badge
:arity (length formals)
:out-arity output-arity
:ilks t)
(compute-badge-of-primitives
(cdr terms-and-out-arities)))))))
(defconst *badge-prim-falist* ; this is a fast-alist!
(compute-badge-of-primitives *first-order-like-terms-and-out-arities*))
(defun apply$-primp (fn)
(declare (xargs :guard t))
(and (hons-get fn *badge-prim-falist*) t))
(defun badge-prim (fn)
(declare (xargs :guard t))
(cdr (hons-get fn *badge-prim-falist*)))
; We need to know that badge-prim returns either nil or a badge of the form
; (APPLY$-BADGE arity out-arity . T). This would be trivial except for the
; fact that there are so many cases (because the alist is so long). So we
; resort to a standard trick for proving something about a big constant: define
; a function, named check-it! below, to check the property computationally,
; prove that the property holds of x if (check-it x) is t, then derive the main
; theorem by instantiating that lemma with {x <-- '<big-constant>}.
(defun apply$-badgep (x)
(and (weak-apply$-badge-p x)
(natp (access apply$-badge x :arity))
(natp (access apply$-badge x :out-arity))
(or (eq (access apply$-badge x :ilks) t)
(and (true-listp (access apply$-badge x :ilks))
(equal (len (access apply$-badge x :ilks))
(access apply$-badge x :arity))
(not (all-nils (access apply$-badge x :ilks)))
(subsetp (access apply$-badge x :ilks) '(nil :fn :expr))))))
(defthm apply$-badgep-properties ; only selected properties!
(implies (apply$-badgep x)
(and (consp x)
(natp (access apply$-badge x :arity))
(natp (access apply$-badge x :out-arity))
(or (eq (access apply$-badge x :ilks) t)
(and (true-listp (access apply$-badge x :ilks))
(equal (len (access apply$-badge x :ilks))
(access apply$-badge x :arity))))))
; Note: Unfortunately, record accessors translate into lambda applications.
; :Rewrite rules handle this appropriately by beta reducing the lambda
; applications in the conclusion. But :linear rules do not. So we've written
; all the rules in terms of car/cdr nests rather than access terms. FTR:
; (access apply$-badge x :arity) = (car (cdr x))
; (access apply$-badge x :out-arity) = (car (cdr (cdr x)))
; (access apply$-badge x :ilks) = (cdr (cdr (cdr x)))
:rule-classes
((:compound-recognizer
:corollary (implies (apply$-badgep x)
(consp x)))
(:linear
:corollary (implies (apply$-badgep x)
(<= 0 (CAR (CDR x))))) ; :arity
(:rewrite
:corollary (implies (apply$-badgep x)
(integerp (CAR (CDR x))))) ; :arity
(:linear
:corollary (implies (apply$-badgep x)
(<= 0 (CAR (CDR (CDR x)))))) ; :out-arity
(:rewrite
:corollary (implies (apply$-badgep x)
(integerp (CAR (CDR (CDR x)))))) ; :out-arity
(:rewrite
:corollary (implies (and (apply$-badgep x)
(not (eq (CDR (CDR (CDR x))) t))) ; :ilks
(and (true-listp (CDR (CDR (CDR x))))
(equal (len (CDR (CDR (CDR x))))
(CAR (CDR x))))))))
(encapsulate
nil
(local
(defun check-it! (alist)
(cond ((atom alist) t)
(t (and (consp (car alist))
(apply$-badgep (cdr (car alist)))
(eq (access apply$-badge (cdr (car alist)) :ilks) t)
(check-it! (cdr alist)))))))
(local
(defthm check-it!-works
(implies (check-it! alist)
(implies (hons-get fn alist)
(and (consp (hons-get fn alist))
(apply$-badgep (cdr (hons-get fn alist)))
(eq (access apply$-badge (cdr (hons-get fn alist)) :ilks) t))))
:rule-classes nil))
(defthm badge-prim-type
(implies (apply$-primp fn)
(and (apply$-badgep (badge-prim fn))
(eq (cdr (cdr (cdr (badge-prim fn)))) t))) ; :ilks
:hints (("Goal" :use (:instance check-it!-works (alist *badge-prim-falist*))
:in-theory (disable check-it! hons-get)))
:rule-classes
((:rewrite
:corollary (implies (apply$-primp fn)
(and (apply$-badgep (badge-prim fn))
(eq (cdr (cdr (cdr (badge-prim fn)))) t)))) ; :ilks
(:forward-chaining
:corollary (implies (apply$-primp fn)
(apply$-badgep (badge-prim fn)))))))
(defun n-car-cadr-caddr-etc (n x)
(if (zp n)
nil
(cons `(CAR ,x)
(n-car-cadr-caddr-etc (- n 1) `(CDR ,x)))))
(defun make-apply$-prim-body-fn (falist acc)
; Falist = ((fn . badge) ...) and is a fast alist although we do not actually
; use it as an alist here; we just cdr down it.
; We produce the guts of the body used in the defun of APPLY$-PRIM. That
; function will be defined as:
; (defun apply$-prim (fn args)
; (declare (xargs :guard (true-listp args)))
; (case fn
; (ACL2-NUMBERP (ACL2-NUMBERP (CAR ARGS)))
; (BAD-ATOM<= (EC-CALL (BAD-ATOM<= (CAR ARGS)
; (CAR (CDR ARGS)))))
; ...
; (otherwise nil))
; and this function constructs the part in all-caps above. The EC-CALLs
; surround every call of each apply$ primitive except the ones where we know it
; is not necessary.
(declare (xargs :mode :program))
(cond
((endp falist) (reverse acc)) ; reversing might be unnecessary
(t (let* ((fn (car (car falist)))
(badge (cdr (car falist)))
(call1 `(,fn ,@(n-car-cadr-caddr-etc
(access apply$-badge badge :arity)
'ARGS)))
(call2 (if (member-eq fn ACL2::*EC-CALL-BAD-OPS*)
(cond ((eq fn 'return-last)
'(caddr args))
((eq fn 'mv-list)
'(cadr args))
(t call1))
`(ec-call ,call1)))
(call3 (if (int= (access apply$-badge badge :out-arity) 1)
call2
`(mv-list ',(access apply$-badge badge :out-arity)
,call2))))
(make-apply$-prim-body-fn
(cdr falist)
(cons `(,fn ,call3) acc))))))
; It will be necessary to disable the executable-counterpart of break$ when
; verifying the guards for apply$-prim, as is done by "make proofs". It seems
; reasonable actually to disable that rune globally, to avoid breaks during
; proofs; so we do that. We also disable the executable-counterpart of
; good-bye-fn; otherwise ACL2 can quit during a proof! However, this disabling
; is done in the ACL2 sources now and so need not be done explicitly for the
; model.
; (in-theory (disable (:e break$) (:e good-bye-fn)))
(defmacro make-apply$-prim-body ()
`(case fn
,@(make-apply$-prim-body-fn *badge-prim-falist* nil)
(otherwise nil)))
(defun apply$-prim (fn args)
(declare (xargs :guard (true-listp args)))
(make-apply$-prim-body))
; The above defun of apply$-prim contains a case statement with about 800
; cases. Rewriting it causes stack overflow with the nominal rewrite stack
; size of 1000. For example, we cannot prove: (thm (equal (apply$-prim 'tamep
; (list x)) (tamep x))). We will therefore temporarily enlarge the stack and
; verify a metafunction which will enable MUCH faster reduction of (apply$-prim
; 'fn args).
(set-rewrite-stack-limit 4000) ; local to this book
(defun meta-apply$-prim (term)
(declare (xargs :guard (pseudo-termp term)
; There is no need to verify guards here. For that, see
; books/projects/apply/base.lisp.
:verify-guards nil))
(cond ((and (consp term)
(eq (ffn-symb term) 'apply$-prim)
(quotep (fargn term 1))
(symbolp (cadr (fargn term 1))))
(let* ((fn (cadr (fargn term 1)))
(args (fargn term 2))
(temp (hons-get fn *badge-prim-falist*)))
(cond
((null temp)
term)
(t (if (int= (access apply$-badge (cdr temp) :out-arity) 1)
`(,fn ,@(n-car-cadr-caddr-etc
(access apply$-badge (cdr temp) :arity)
args))
`(mv-list ',(access apply$-badge (cdr temp) :out-arity)
(,fn ,@(n-car-cadr-caddr-etc
(access apply$-badge (cdr temp) :arity)
args))))))))
(t term)))
; (defun meta-apply$-prim (term)
; (cond ((and (consp term)
; (eq (ffn-symb term) 'apply$-prim)
; (quotep (fargn term 1))
; (symbolp (cadr (fargn term 1))))
; (let* ((fn (cadr (fargn term 1)))
; (args (fargn term 2))
; (temp (hons-get fn *badge-prim-falist*)))
; (cond
; ((null temp)
; term)
; (t ; (= (access apply$-badge (cdr temp) :out-arity) 1)
; `(,fn ,@(n-car-cadr-caddr-etc
; (access apply$-badge (cdr temp) :arity)
; args)))
; ; (t `(mv-list
; ; (,fn ,@(n-car-cadr-caddr-etc
; ; (access apply$-badge (cdr temp) :arity)
; ; args))))
; )))
; (t term)))
(comp t) ; e.g., for Allegro CL
(make-event
`(encapsulate
nil
; We introduce the relevant evaluator; defevaluator works in a
; very restricted theory (*DEFEVALUATOR-FORM-BASE-THEORY*) and so
; we do not have to worry about disabling all the functions
; involved in the defun of apply$-prim.
(with-output
:off (prove event)
(defevaluator apply$-prim-meta-fn-ev
apply$-prim-meta-fn-ev-list
((apply$-prim fn args)
,@(strip-cars *first-order-like-terms-and-out-arities*))))
; To prove correctness we need to force car-cadr-caddr-etc
; to open.
(local
(defthm n-car-cadr-caddr-etc-opener
(implies (natp n)
(equal (n-car-cadr-caddr-etc (+ 1 n) args)
(cons (list 'car args)
(n-car-cadr-caddr-etc n (list 'CDR args)))))))
; Next is correctness of the apply$-prim simplifier.
; Some day we may fix the well-formedness-guarantee code so that at the time a
; meta function is applied, we only check the non-primitive functions in the
; supplied arities-alist. That could be done by checking the list at the time
; we store the meta lemma and removing any function that is a primitive. We
; know -- or can at least sanely assume -- that the arities of all the system
; primitives won't change. Then the built-in constant to be checked at
; apply-time would be much reduced -- in fact, to NIL in the case of
; meta-apply$-prim.
; If the above fix is ever made, it would be good to add a well-formedness
; guarantee lemma.
; The original proof of the next lemma didn't involve the proof-builder, but
; has been observed to take about 9 times as long that way.
; (with-output
; :off (prove event)
; (defthm apply$-prim-meta-fn-correct
; (equal (apply$-prim-meta-fn-ev term alist)
; (apply$-prim-meta-fn-ev (meta-apply$-prim term) alist))
; :hints (("Goal" :in-theory (disable acl2::apply$-primp
; acl2::apply$-prim
; (:executable-counterpart break$))))
; :rule-classes ((:meta :trigger-fns (apply$-prim)))))
(local
(defthm hide-is-identity
(equal (hide x) x)
:hints (("Goal" :expand ((hide x))))))
(defthm apply$-prim-meta-fn-correct
(equal (apply$-prim-meta-fn-ev term alist)
(apply$-prim-meta-fn-ev (meta-apply$-prim term)
alist))
:instructions
((quiet!
(:bash ("Goal" :in-theory '((:definition hons-assoc-equal)
(:definition hons-equal)
(:definition hons-get)
(:definition meta-apply$-prim)
(:definition quotep)
(:executable-counterpart car)
(:executable-counterpart cdr)
(:executable-counterpart consp))))
(:in-theory (union-theories
'((:definition apply$-prim)
(:definition n-car-cadr-caddr-etc))
(union-theories acl2::*expandable-boot-strap-non-rec-fns*
(set-difference-theories
(current-theory :here)
(cons '(:rewrite default-car)
(function-theory :here))))))
(:repeat :prove)))
:rule-classes ((:meta :trigger-fns (apply$-prim))))
(defthm apply$-primp-implies-symbolp
(implies (apply$-primp fn)
(symbolp fn))
:rule-classes :forward-chaining)))
(in-theory (disable apply$-prim apply$-primp))
|