• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
      • Std/lists
      • Std/alists
      • Obags
      • Std/util
        • Defprojection
        • Deflist
        • Defaggregate
        • Define
        • Defmapping
        • Defenum
        • Add-io-pairs
        • Defalist
        • Defmapappend
        • Returns-specifiers
        • Defarbrec
          • Defarbrec-implementation
            • Defarbrec-event-generation
            • Defarbrec-input-processing
              • Defarbrec-process-terminates-name
              • Defarbrec-process-body
              • Defarbrec-process-inputs
              • Defarbrec-process-update-names
              • Defarbrec-process-measure-name
              • Defarbrec-default-update-names
              • Defarbrec-process-nonterminating
              • Defarbrec-process-x1...xn
                • Defarbrec-process-print
                • Defarbrec-process-fn
                • Defarbrec-process-show-only
                • Defarbrec-printp
              • Defarbrec-check-redundancy
              • Defarbrec-fn
              • Defarbrec-table
              • Defarbrec-macro-definition
          • Defines
          • Define-sk
          • Error-value-tuples
          • Defmax-nat
          • Defmin-int
          • Deftutorial
          • Extended-formals
          • Defrule
          • Defval
          • Defsurj
          • Defiso
          • Defconstrained-recognizer
          • Deffixer
          • Defmvtypes
          • Defconsts
          • Defthm-unsigned-byte-p
          • Support
          • Defthm-signed-byte-p
          • Defthm-natp
          • Defund-sk
          • Defmacro+
          • Defsum
          • Defthm-commutative
          • Definj
          • Defirrelevant
          • Defredundant
        • Std/strings
        • Std/osets
        • Std/io
        • Std/basic
        • Std/system
        • Std/typed-lists
        • Std/bitsets
        • Std/testing
        • Std/typed-alists
        • Std/stobjs
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Defarbrec-input-processing

    Defarbrec-process-x1...xn

    Process the (x1 ... xn) input.

    Signature
    (defarbrec-process-x1...xn x1...xn ctx state) 
      → 
    (mv erp nothing state)
    Returns
    nothing — Type (null nothing).

    Definitions and Theorems

    Function: defarbrec-process-x1...xn

    (defun defarbrec-process-x1...xn (x1...xn ctx state)
     (declare (xargs :stobjs (state)))
     (declare (xargs :guard t))
     (let ((__function__ 'defarbrec-process-x1...xn))
      (declare (ignorable __function__))
      (b* ((description "The second input")
           ((er &)
            (ensure-value-is-symbol-list$ x1...xn description t nil))
           ((er &)
            (ensure-list-has-no-duplicates$ x1...xn description t nil)))
        (value nil))))

    Theorem: null-of-defarbrec-process-x1...xn.nothing

    (defthm null-of-defarbrec-process-x1...xn.nothing
      (b* (((mv ?erp ?nothing ?state)
            (defarbrec-process-x1...xn x1...xn ctx state)))
        (null nothing))
      :rule-classes :rewrite)