• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
      • Std/lists
      • Std/alists
      • Obags
      • Std/util
        • Defprojection
        • Deflist
        • Defaggregate
        • Define
        • Defmapping
          • Defsurj
          • Defiso
          • Defmapping-implementation
            • Defmapping-event-generation
            • Defmapping-check-redundancy
            • Defmapping-table
            • Defmapping-fn
            • Defmapping-input-processing
              • Defmapping-process-thm-names
              • Defmapping-process-inputs
              • Defmapping-process-function
              • Defmapping-process-functions
              • Defmapping-process-thm-enable
              • Defmapping-thm-keywords
              • Defmapping-process-name
              • Defmapping-macro-definition
            • Definj
          • Defenum
          • Add-io-pairs
          • Defalist
          • Defmapappend
          • Returns-specifiers
          • Defarbrec
          • Define-sk
          • Defines
          • 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
    • Defmapping-input-processing

    Defmapping-process-name

    Process the name input.

    Signature
    (defmapping-process-name name ctx state) 
      → 
    (mv erp nothing state)
    Returns
    nothing — Type (null nothing).

    Definitions and Theorems

    Function: defmapping-process-name

    (defun defmapping-process-name (name ctx state)
     (declare (xargs :stobjs (state)))
     (declare (xargs :guard t))
     (let ((__function__ 'defmapping-process-name))
       (declare (ignorable __function__))
       (b* (((er &)
             (ensure-value-is-symbol$ name "The first input" t nil))
            ((er &)
             (ensure-symbol-not-keyword$ name "The first input" t nil)))
         (value nil))))

    Theorem: null-of-defmapping-process-name.nothing

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