• 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

    Honsed-defarbrec-info

    Raw constructor for honsed defarbrec-infop structures.

    Syntax:

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

    This is identical to defarbrec-info, except that we hons the structure we are creating.

    Definition

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

    Function: honsed-defarbrec-info

    (defun honsed-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))))
     (mbe
      :logic (defarbrec-info call$ expansion x1...xn body
                             update-fns terminates-fn measure-fn)
      :exec
      (hons
       (hons 'call$ call$)
       (hons (hons 'expansion expansion)
             (hons (hons 'x1...xn x1...xn)
                   (hons (hons 'body body)
                         (hons (hons 'update-fns update-fns)
                               (hons (hons 'terminates-fn terminates-fn)
                                     (hons (hons 'measure-fn measure-fn)
                                           nil)))))))))