• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
      • B*
      • Defunc
      • Fty
      • Apt
      • Std/util
      • Defdata
      • Defrstobj
      • Seq
      • Match-tree
      • Defrstobj
      • With-supporters
      • Def-partial-measure
      • Template-subst
      • Soft
      • Defthm-domain
      • Event-macros
        • Evmac-input-hints-p
        • Evmac-input-print-p
        • Function-definedness
        • Event-macro-input-processing
        • Event-macro-screen-printing
        • Make-event-terse
        • Event-macro-applicability-conditions
          • Evmac-input-hints-p
          • Event-macro-applicability-condition-utilities
            • Evmac-appcond-theorem
            • Evmac-appcond-theorem-list
            • Evmac-appcondp
              • Evmac-appcond
              • Make-evmac-appcond
                • Change-evmac-appcond
                • Make-honsed-evmac-appcond
                • Honsed-evmac-appcond
                • Evmac-appcond->name
                • Evmac-appcond->formula
              • Evmac-ensure-no-extra-hints
              • Make-evmac-appcond?
              • Evmac-appcond-theorems-no-extra-hints
              • Evmac-appcond-listp
          • Event-macro-results
          • Template-generators
          • Event-macro-event-generators
          • Event-macro-proof-preparation
          • Try-event
          • Restore-output?
          • Restore-output
          • Fail-event
          • Cw-event
          • Event-macro-xdoc-constructors
          • Event-macro-intro-macros
        • Def-universal-equiv
        • Def-saved-obligs
        • With-supporters-after
        • Definec
        • Sig
        • Outer-local
        • Data-structures
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Evmac-appcondp

    Make-evmac-appcond

    Constructor macro for evmac-appcondp structures.

    Syntax:

    (make-evmac-appcond [:name <name>] 
                        [:formula <formula>]) 
    

    This is our preferred way to construct evmac-appcondp structures. It simply conses together a structure with the specified fields.

    This macro generates a new evmac-appcondp structure from scratch. See also change-evmac-appcond, which can "change" an existing structure, instead.

    The evmac-appcondp structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-evmac-appcond instead.

    Definition

    This is an ordinary make- macro introduced by std::defaggregate.

    Macro: make-evmac-appcond

    (defmacro make-evmac-appcond (&rest args)
      (std::make-aggregate 'evmac-appcond
                           args '((:name) (:formula))
                           'make-evmac-appcond
                           nil))