• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
        • Z3-installation
        • Smt-hint
        • Tutorial
        • Status
        • Developer
          • Verified
            • Uninterpreted-fn-cp
              • Fhg-single-args
                • Fhg-single-args-fix
                • Make-fhg-single-args
                • Fhg-single-args-equiv
                • Fhg-single-args->fn-more-returns-hint-acc
                • Fhg-single-args->fn-returns-hint-acc
                • Fhg-single-args->lambda-acc
                • Fhg-single-args->actuals
                  • Change-fhg-single-args
                  • Fhg-single-args->fn
                  • Fhg-single-args-p
                • Fhg-args
                • Lambda-binding
                • Generate-fn-hint-lst
              • Smt-hint-interface
              • Function-expansion
              • Smt-config
              • Fty-support
              • Smt-computed-hints
              • Add-hypo-cp
              • Smt-hint-please
              • Type-extract-cp
              • Smt-extract
              • Smtlink-process-user-hint
              • Smt-basics
              • Smt-type-hyp
              • Smt-magic-fix
            • Trusted
        • Abnf
        • Vwsim
        • Isar
        • Pfcs
        • Wp-gen
        • Dimacs-reader
        • Legacy-defrstobj
        • Proof-checker-array
        • Soft
        • C
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Riscv
        • Bitcoin
        • Des
        • Ethereum
        • X86isa
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Community
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Fhg-single-args

    Fhg-single-args->actuals

    Get the actuals field from a fhg-single-args.

    Signature
    (fhg-single-args->actuals x) → actuals
    Arguments
    x — Guard (fhg-single-args-p x).
    Returns
    actuals — Type (pseudo-term-listp actuals).

    This is an ordinary field accessor created by defprod.

    Definitions and Theorems

    Function: fhg-single-args->actuals$inline

    (defun fhg-single-args->actuals$inline (x)
      (declare (xargs :guard (fhg-single-args-p x)))
      (declare (xargs :guard t))
      (let ((acl2::__function__ 'fhg-single-args->actuals))
        (declare (ignorable acl2::__function__))
        (mbe :logic
             (b* ((x (and t x)))
               (pseudo-term-list-fix (cdr (std::da-nth 1 x))))
             :exec (cdr (std::da-nth 1 x)))))

    Theorem: pseudo-term-listp-of-fhg-single-args->actuals

    (defthm pseudo-term-listp-of-fhg-single-args->actuals
      (b* ((actuals (fhg-single-args->actuals$inline x)))
        (pseudo-term-listp actuals))
      :rule-classes :rewrite)

    Theorem: fhg-single-args->actuals$inline-of-fhg-single-args-fix-x

    (defthm fhg-single-args->actuals$inline-of-fhg-single-args-fix-x
      (equal (fhg-single-args->actuals$inline (fhg-single-args-fix x))
             (fhg-single-args->actuals$inline x)))

    Theorem: fhg-single-args->actuals$inline-fhg-single-args-equiv-congruence-on-x

    (defthm
     fhg-single-args->actuals$inline-fhg-single-args-equiv-congruence-on-x
     (implies (fhg-single-args-equiv x x-equiv)
              (equal (fhg-single-args->actuals$inline x)
                     (fhg-single-args->actuals$inline x-equiv)))
     :rule-classes :congruence)