• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
        • Deftreeops
        • Defdefparse
          • Defdefparse-implementation
            • Defdefparse-event-generation
              • Defdefparse-gen-function-for-rulename
              • Defdefparse-gen-code-for-alternation
              • Defdefparse-gen-code-for-repetition
              • Defdefparse-gen-function-for-group
              • Defdefparse-function-spec
              • Defdefparse-gen-code-for-element
              • Defdefparse-gen-*-group-macro
              • Defdefparse-gen-function-for-option
              • Defdefparse-gen-option-macro
              • Defdefparse-gen-group-macro
              • Defdefparse-gen-function-for-repetition
              • Defdefparse-gen-code-for-concatenation
              • Defdefparse-gen-*-rulename-macro
              • Defdefparse-gen-rulename-macro
              • Defdefparse-gen-repetition-alist
              • Defdefparse-gen-option-alist
              • Defdefparse-gen-group-alist
              • Defdefparse-gen-everything
              • Defdefparse-gen-repetition-table-macro
              • Defdefparse-gen-option-table-macro
              • Defdefparse-gen-group-table-macro
              • Defdefparse-gen-function-for-spec
              • Defdefparse-gen-repetition-table
              • Defdefparse-gen-option-table
                • Defdefparse-gen-group-table
                • Defdefparse-reorder-alternation
                • Defdefparse-order-permutationp
                • Defdefparse-gen-repetition-table-name
                • Defdefparse-gen-option-table-name
                • Defdefparse-gen-group-table-name
                • Defdefparse-alt-symbol-alist
                • Defdefparse-rep-symbol-alist
              • Defdefparse-fn
              • Defdefparse-input-processing
              • Defdefparse-table
              • Defdefparse-macro-definition
          • Defgrammar
          • Tree-utilities
          • Notation
          • Grammar-parser
          • Meta-circular-validation
          • Parsing-primitives-defresult
          • Parsing-primitives-seq
          • Operations
          • Examples
          • Differences-with-paper
          • Constructor-utilities
          • Grammar-printer
          • Parsing-tools
        • Vwsim
        • Isar
        • Wp-gen
        • Dimacs-reader
        • Pfcs
        • Legacy-defrstobj
        • C
        • Proof-checker-array
        • Soft
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Ethereum
        • Leftist-trees
        • Java
        • Riscv
        • Taspi
        • Bitcoin
        • Zcash
        • Des
        • X86isa
        • Sha-2
        • Yul
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Axe
        • Poseidon
        • Where-do-i-place-my-book
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Community
      • Std
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Defdefparse-event-generation

    Defdefparse-gen-option-table

    Generate the table of option parsing functions.

    Signature
    (defdefparse-gen-option-table args prefix table-name) → event
    Arguments
    args — Guard (true-listp args).
    prefix — Guard (common-lisp::symbolp prefix).
    table-name — Guard (common-lisp::symbolp table-name).
    Returns
    event — Type (pseudo-event-formp event).

    We generate a named constant defined with the alist produced by defdefparse-gen-option-alist.

    Definitions and Theorems

    Function: defdefparse-gen-option-table

    (defun defdefparse-gen-option-table (args prefix table-name)
     (declare (xargs :guard (and (true-listp args)
                                 (common-lisp::symbolp prefix)
                                 (common-lisp::symbolp table-name))))
     (let ((__function__ 'defdefparse-gen-option-table))
      (declare (ignorable __function__))
      (b* ((alist (defdefparse-gen-option-alist args prefix)))
       (cons
        'defval
        (cons
         table-name
         (cons
          ':short
          (cons
           '"Table of option parsing functions."
           (cons
            (cons 'quote (cons alist 'nil))
            (cons
             '///
             (cons
              (cons 'assert-event
                    (cons (cons 'defdefparse-alt-symbol-alistp
                                (cons table-name 'nil))
                          'nil))
              (cons
               (cons 'assert-event
                     (cons (cons 'no-duplicatesp-equal
                                 (cons (cons 'strip-cars
                                             (cons table-name 'nil))
                                       'nil))
                           'nil))
               (cons
                   (cons 'assert-event
                         (cons (cons 'no-duplicatesp-eq
                                     (cons (cons 'strip-cdrs
                                                 (cons table-name 'nil))
                                           'nil))
                               'nil))
                   'nil))))))))))))

    Theorem: pseudo-event-formp-of-defdefparse-gen-option-table

    (defthm pseudo-event-formp-of-defdefparse-gen-option-table
     (b* ((event (defdefparse-gen-option-table args prefix table-name)))
       (pseudo-event-formp event))
     :rule-classes :rewrite)