• 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
          • Std/util
            • Defprojection
            • Deflist
            • Defaggregate
            • Define
            • Defmapping
            • Defenum
            • Add-io-pairs
            • Defalist
            • Defmapappend
            • Returns-specifiers
            • Defarbrec
            • Defines
            • Define-sk
            • Error-value-tuples
            • Defmax-nat
            • Defmin-int
            • Deftutorial
              • Deftutorial-implementation
                • Deftutorial-gen-deftopics
                • Deftutorial-gen-defpage
                • Deftutorial-gen-deftop
                  • Deftutorial-gen-section
                  • Deftutorial-fn
                  • Deftutorial-definition
              • 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
            • 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
        • Std/util
          • Defprojection
          • Deflist
          • Defaggregate
          • Define
          • Defmapping
          • Defenum
          • Add-io-pairs
          • Defalist
          • Defmapappend
          • Returns-specifiers
          • Defarbrec
          • Defines
          • Define-sk
          • Error-value-tuples
          • Defmax-nat
          • Defmin-int
          • Deftutorial
            • Deftutorial-implementation
              • Deftutorial-gen-deftopics
              • Deftutorial-gen-defpage
              • Deftutorial-gen-deftop
                • Deftutorial-gen-section
                • Deftutorial-fn
                • Deftutorial-definition
            • 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
          • 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
      • Deftutorial-implementation

      Deftutorial-gen-deftop

      Generate the macro to define the top page of the tutorial.

      Signature
      (deftutorial-gen-deftop tut-name) → events
      Arguments
      tut-name — Guard (symbolp tut-name).
      Returns
      events — Type (pseudo-event-form-listp events).

      The generated macro stores information about the top page into the table. The information consists of a pair in the table, whose key is the keyword :top and whose value is a list (parents text1 text2 ...) obtained from the arguments of the macro.

      Definitions and Theorems

      Function: deftutorial-gen-deftop

      (defun deftutorial-gen-deftop (tut-name)
       (declare (xargs :guard (symbolp tut-name)))
       (let ((__function__ 'deftutorial-gen-deftop))
        (declare (ignorable __function__))
        (b* ((deftop (packn-pos (list 'def- tut-name '-top)
                                tut-name))
             (deftop-fn (add-suffix deftop "-FN"))
             (tut-table (add-suffix tut-name "-TABLE")))
         (cons
          (cons
           'defun
           (cons
            deftop-fn
            (cons
             '(top-parents top-text)
             (cons
              (cons
               'b*
               (cons
                '((top (cons top-parents top-text)))
                (cons
                 (cons
                  'cons
                  (cons
                   ''table
                   (cons
                    (cons
                         'cons
                         (cons (cons 'quote (cons tut-table 'nil))
                               '((cons ':top
                                       (cons (cons 'quote (cons top 'nil))
                                             'nil)))))
                    'nil)))
                 'nil)))
              'nil))))
          (cons
           (cons
            'defmacro
            (cons
             deftop
             (cons
              '(top-parents &rest top-text)
              (cons
               (cons
                'cons
                (cons
                 ''make-event
                 (cons
                  (cons
                   'cons
                   (cons
                    (cons
                     'cons
                     (cons
                          (cons 'quote (cons deftop-fn 'nil))
                          '((cons (cons 'quote (cons top-parents 'nil))
                                  (cons (cons 'quote (cons top-text 'nil))
                                        'nil)))))
                    '('nil)))
                  'nil)))
               'nil))))
           'nil)))))

      Theorem: pseudo-event-form-listp-of-deftutorial-gen-deftop

      (defthm pseudo-event-form-listp-of-deftutorial-gen-deftop
        (b* ((events (deftutorial-gen-deftop tut-name)))
          (pseudo-event-form-listp events))
        :rule-classes :rewrite)