• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
      • Theories
      • Rule-classes
      • Proof-builder
      • Recursion-and-induction
      • Hons-and-memoization
      • Events
      • Parallelism
      • History
      • Programming
      • Operational-semantics
      • Real
      • Start-here
      • Debugging
      • Miscellaneous
      • Output-controls
      • Macros
        • Make-event
        • Defmacro
        • Untranslate-patterns
        • Tc
        • Trans*
        • Macro-aliases-table
        • Macro-args
        • Defabbrev
        • User-defined-functions-table
        • Trans
        • Untranslate-for-execution
        • Add-macro-fn
        • Check-vars-not-free
        • Safe-mode
        • Macro-libraries
          • B*
          • Defunc
          • Fty
          • Apt
            • Simplify-defun
            • Isodata
            • Tailrec
            • Schemalg
            • Restrict
              • Restrict-implementation
                • Restrict-event-generation
                • Restrict-fn
                • Restrict-macro-definition
                  • Restrict-input-processing
              • Expdata
              • Casesplit
              • Simplify-term
              • Simplify-defun-sk
              • Parteval
              • Solve
              • Wrap-output
              • Propagate-iso
              • Simplify
              • Finite-difference
              • Drop-irrelevant-params
              • Copy-function
              • Lift-iso
              • Rename-params
              • Utilities
              • Simplify-term-programmatic
              • Simplify-defun-sk-programmatic
              • Simplify-defun-programmatic
              • Simplify-defun+
              • Common-options
              • Common-concepts
            • Std/util
            • Defdata
            • Defrstobj
            • Seq
            • Match-tree
            • Defrstobj
            • With-supporters
            • Def-partial-measure
            • Template-subst
            • Soft
            • Defthm-domain
            • Event-macros
            • Def-universal-equiv
            • Def-saved-obligs
            • With-supporters-after
            • Definec
            • Sig
            • Outer-local
            • Data-structures
          • Trans1
          • Defmacro-untouchable
          • Set-duplicate-keys-action
          • Add-macro-alias
          • Magic-macroexpand
          • Defmacroq
          • Trans!
          • Remove-macro-fn
          • Remove-macro-alias
          • Add-binop
          • Untrans-table
          • Trans*-
          • Remove-binop
          • Tcp
          • Tca
        • Mailing-lists
        • Interfacing-tools
      • Macro-libraries
        • B*
        • Defunc
        • Fty
        • Apt
          • Simplify-defun
          • Isodata
          • Tailrec
          • Schemalg
          • Restrict
            • Restrict-implementation
              • Restrict-event-generation
              • Restrict-fn
              • Restrict-macro-definition
                • Restrict-input-processing
            • Expdata
            • Casesplit
            • Simplify-term
            • Simplify-defun-sk
            • Parteval
            • Solve
            • Wrap-output
            • Propagate-iso
            • Simplify
            • Finite-difference
            • Drop-irrelevant-params
            • Copy-function
            • Lift-iso
            • Rename-params
            • Utilities
            • Simplify-term-programmatic
            • Simplify-defun-sk-programmatic
            • Simplify-defun-programmatic
            • Simplify-defun+
            • Common-options
            • Common-concepts
          • Std/util
          • Defdata
          • Defrstobj
          • Seq
          • Match-tree
          • Defrstobj
          • With-supporters
          • Def-partial-measure
          • Template-subst
          • Soft
          • Defthm-domain
          • Event-macros
          • Def-universal-equiv
          • Def-saved-obligs
          • With-supporters-after
          • Definec
          • Sig
          • Outer-local
          • Data-structures
        • Interfacing-tools
        • Hardware-verification
        • Software-verification
        • Math
        • Testing-utilities
      • Restrict-implementation

      Restrict-macro-definition

      Definition of the restrict macro.

      Submit the event form generated by restrict-fn.

      Macro: restrict

      (defmacro restrict (&whole call old
                                 restriction &key (undefined ':undefined)
                                 (new-name ':auto)
                                 (new-enable ':auto)
                                 (old-to-new-name 'nil old-to-new-name?)
                                 (old-to-new-enable 'nil
                                                    old-to-new-enable?)
                                 (new-to-old-name 'nil new-to-old-name?)
                                 (new-to-old-enable 'nil
                                                    new-to-old-enable?)
                                 (verify-guards ':auto)
                                 (hints 'nil)
                                 (print ':result)
                                 (show-only 'nil))
       (cons
        'make-event-terse
        (cons
         (cons
          'restrict-fn
          (cons
           (cons 'quote (cons old 'nil))
           (cons
            (cons 'quote (cons restriction 'nil))
            (cons
             (cons 'quote (cons undefined 'nil))
             (cons
              (cons 'quote (cons new-name 'nil))
              (cons
               (cons 'quote (cons new-enable 'nil))
               (cons
                (cons 'quote
                      (cons old-to-new-name 'nil))
                (cons
                 (cons 'quote
                       (cons old-to-new-name? 'nil))
                 (cons
                  (cons 'quote
                        (cons old-to-new-enable 'nil))
                  (cons
                   (cons 'quote
                         (cons old-to-new-enable? 'nil))
                   (cons
                    (cons 'quote
                          (cons new-to-old-name 'nil))
                    (cons
                     (cons 'quote
                           (cons new-to-old-name? 'nil))
                     (cons
                      (cons 'quote
                            (cons new-to-old-enable 'nil))
                      (cons
                       (cons 'quote
                             (cons new-to-old-enable? 'nil))
                       (cons
                        (cons 'quote (cons verify-guards 'nil))
                        (cons
                         (cons 'quote (cons hints 'nil))
                         (cons
                          (cons 'quote (cons print 'nil))
                          (cons
                           (cons 'quote (cons show-only 'nil))
                           (cons
                            (cons 'quote (cons call 'nil))
                            (cons
                             (cons
                                 'cons
                                 (cons ''restrict
                                       (cons (cons 'quote (cons old 'nil))
                                             'nil)))
                             '(state)))))))))))))))))))))
         (cons ':suppress-errors
               (cons (not print) 'nil)))))