• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • C
        • Soft
        • Bv
        • Imp-language
        • Ethereum
        • Event-macros
        • Java
          • Atj
            • Atj-implementation
              • Atj-types
              • Atj-java-primitive-array-model
              • Atj-java-abstract-syntax
              • Atj-input-processing
              • Atj-java-pretty-printer
              • Atj-code-generation
              • Atj-java-primitives
              • Atj-java-primitive-arrays
              • Atj-type-macros
              • Atj-java-syntax-operations
              • Atj-fn
              • Atj-library-extensions
              • Atj-java-input-types
              • Atj-test-structures
                • Atj-test-value
                • Atj-test
                  • Atj-test-fix
                  • Make-atj-test
                  • Atj-test-equiv
                  • Change-atj-test
                  • Atj-test->outputs
                  • Atj-test->inputs
                    • Atj-test->function
                    • Atj-test->name
                    • Atj-testp
                  • Atj-test-value-of-type
                  • Atj-test-values-of-types
                  • Atj-test-value-to-type
                  • Atj-test-values-to-types
                  • Atj-test-value-ACL2-list
                  • Atj-test-value-list
                  • Atj-test-list
                • Aij-notions
                • Atj-macro-definition
              • Atj-tutorial
            • Aij
            • Language
          • Riscv
          • Bitcoin
          • Zcash
          • Yul
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Axe
          • Lists-light
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Atj-test

    Atj-test->inputs

    Get the inputs field from a atj-test.

    Signature
    (atj-test->inputs x) → inputs
    Arguments
    x — Guard (atj-testp x).
    Returns
    inputs — Type (atj-test-value-listp inputs).

    This is an ordinary field accessor created by fty::defprod.

    Definitions and Theorems

    Function: atj-test->inputs$inline

    (defun atj-test->inputs$inline (x)
      (declare (xargs :guard (atj-testp x)))
      (declare (xargs :guard t))
      (let ((__function__ 'atj-test->inputs))
        (declare (ignorable __function__))
        (mbe :logic
             (b* ((x (and t x)))
               (atj-test-value-list-fix (cdr (std::da-nth 2 x))))
             :exec (cdr (std::da-nth 2 x)))))

    Theorem: atj-test-value-listp-of-atj-test->inputs

    (defthm atj-test-value-listp-of-atj-test->inputs
      (b* ((inputs (atj-test->inputs$inline x)))
        (atj-test-value-listp inputs))
      :rule-classes :rewrite)

    Theorem: atj-test->inputs$inline-of-atj-test-fix-x

    (defthm atj-test->inputs$inline-of-atj-test-fix-x
      (equal (atj-test->inputs$inline (atj-test-fix x))
             (atj-test->inputs$inline x)))

    Theorem: atj-test->inputs$inline-atj-test-equiv-congruence-on-x

    (defthm atj-test->inputs$inline-atj-test-equiv-congruence-on-x
      (implies (atj-test-equiv x x-equiv)
               (equal (atj-test->inputs$inline x)
                      (atj-test->inputs$inline x-equiv)))
      :rule-classes :congruence)