• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
        • Deftreeops
          • Deftreeops-implementation
            • Deftreeops-event-generation
            • Deftreeops-info
            • Deftreeops-process-inputs-and-gen-everything
              • Deftreeops-fn
              • Deftreeops-table
              • Deftreeops-input-processing
              • Deftreeops-macro-definition
            • Deftreeops-show-event
            • Deftreeops-show-info
          • Defdefparse
          • Defgrammar
          • Tree-utilities
          • Notation
          • Grammar-parser
          • Meta-circular-validation
          • Parsing-primitives-defresult
          • Parsing-primitives-seq
          • Operations
          • Examples
          • Differences-with-paper
          • Constructor-utilities
          • Grammar-printer
          • Parsing-tools
        • Vwsim
        • Isar
        • Wp-gen
        • Dimacs-reader
        • Pfcs
        • Legacy-defrstobj
        • C
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Deftreeops-implementation

    Deftreeops-process-inputs-and-gen-everything

    Process the inputs and generate the events.

    Signature
    (deftreeops-process-inputs-and-gen-everything args call wrld) 
      → 
    (mv erp event)
    Arguments
    args — Guard (true-listp args).
    call — Guard (pseudo-event-formp call).
    wrld — Guard (plist-worldp wrld).
    Returns
    event — Type (pseudo-event-formp event).

    Definitions and Theorems

    Function: deftreeops-process-inputs-and-gen-everything

    (defun deftreeops-process-inputs-and-gen-everything (args call wrld)
     (declare (xargs :guard (and (true-listp args)
                                 (pseudo-event-formp call)
                                 (plist-worldp wrld))))
     (let ((__function__ 'deftreeops-process-inputs-and-gen-everything))
      (declare (ignorable __function__))
      (b* (((reterr) '(_))
           ((erp redundantp grammar rules prefix print)
            (deftreeops-process-inputs args call wrld))
           ((when redundantp)
            (retok '(value-triple :redundant))))
       (retok
         (deftreeops-gen-everything grammar rules prefix print call)))))

    Theorem: pseudo-event-formp-of-deftreeops-process-inputs-and-gen-everything.event

    (defthm
     pseudo-event-formp-of-deftreeops-process-inputs-and-gen-everything.event
     (b*
      (((mv acl2::?erp acl2::?event)
        (deftreeops-process-inputs-and-gen-everything args call wrld)))
      (pseudo-event-formp event))
     :rule-classes :rewrite)