• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
      • Vwsim
      • Isar
      • Wp-gen
      • Dimacs-reader
      • Pfcs
      • Legacy-defrstobj
      • Proof-checker-array
      • Soft
      • C
      • Farray
      • Rp-rewriter
      • Instant-runoff-voting
      • Imp-language
        • Semantics
          • Step
          • Write-var
          • Outcome
          • Beval
          • Read-var
          • Config
            • Config-fix
            • Config-equiv
            • Make-config
            • Config->comms
            • Change-config
            • Configp
              • Config->env
            • Terminatingp
            • Aeval
            • Step*
            • Stepn
            • Env
          • Abstract-syntax
          • Interpreter
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Bitcoin
        • Riscv
        • 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
        • Bigmems
        • Builtins
        • Execloader
        • Aleo
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Config

    Configp

    Recognizer for config structures.

    Signature
    (configp x) → *

    Definitions and Theorems

    Function: configp

    (defun configp (x)
      (declare (xargs :guard t))
      (let ((__function__ 'configp))
        (declare (ignorable __function__))
        (and (consp x)
             (eq (car x) :config)
             (true-listp (cdr x))
             (eql (len (cdr x)) 2)
             (b* ((comms (std::da-nth 0 (cdr x)))
                  (env (std::da-nth 1 (cdr x))))
               (and (comm-listp comms) (envp env))))))

    Theorem: consp-when-configp

    (defthm consp-when-configp
      (implies (configp x) (consp x))
      :rule-classes :compound-recognizer)