• 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-check-redundancy
            • Defarbrec-fn
            • Defarbrec-table
              • Defarbrec-infop
                • Defarbrec-info
                  • Make-defarbrec-info
                  • Change-defarbrec-info
                  • Honsed-defarbrec-info
                  • Make-honsed-defarbrec-info
                  • Defarbrec-info->x1...xn
                  • Defarbrec-info->update-fns
                  • Defarbrec-info->terminates-fn
                  • Defarbrec-info->measure-fn
                  • Defarbrec-info->expansion
                  • Defarbrec-info->call$
                  • Defarbrec-info->body
                • Defarbrec-filter-call
                • *defarbrec-table-name*
              • Defarbrec-macro-definition
          • 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
    • Defarbrec-infop

    Defarbrec-info

    Raw constructor for defarbrec-infop structures.

    Syntax:

    (defarbrec-info call$ expansion x1...xn body
                    update-fns terminates-fn measure-fn)

    This is the lowest-level constructor for defarbrec-infop structures. It simply conses together a structure with the specified fields.

    Note: It's generally better to use macros like make-defarbrec-info or change-defarbrec-info instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.

    The defarbrec-infop structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see honsed-defarbrec-info instead.

    Definition

    This is an ordinary constructor function introduced by std::defaggregate.

    Function: defarbrec-info

    (defun defarbrec-info (call$ expansion x1...xn body
                                 update-fns terminates-fn measure-fn)
     (declare (xargs :guard (and (pseudo-event-formp call$)
                                 (pseudo-event-formp expansion)
                                 (symbol-listp update-fns)
                                 (symbolp terminates-fn)
                                 (symbolp measure-fn))))
     (cons
       (cons 'call$ call$)
       (cons (cons 'expansion expansion)
             (cons (cons 'x1...xn x1...xn)
                   (cons (cons 'body body)
                         (cons (cons 'update-fns update-fns)
                               (cons (cons 'terminates-fn terminates-fn)
                                     (cons (cons 'measure-fn measure-fn)
                                           nil))))))))