• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
      • Apt
      • Zfc
      • Acre
      • Milawa
      • Smtlink
      • Abnf
        • Deftreeops
        • Defdefparse
        • Defgrammar
        • Tree-utilities
          • Check-tree-nonleaf-num-range-4
          • Check-tree-nonleaf-num-range-3
          • Check-tree-num-range-4
          • Check-tree-nonleaf-num-range-2
          • Check-tree-num-range-3
          • Check-tree-num-range-2
          • Tree-list-tuple10
          • Check-tree-nonleaf-num-range
          • Tree-list-tuple9
          • Tree-list-tuple8
          • Tree-list-tuple7
          • Tree-list-tuple6
          • Check-tree-nonleaf-num-seq
          • Check-tree-num-range
          • Tree-list-tuple5
          • Check-tree-nonleaf-10
          • Check-tree-nonleaf-9
          • Check-tree-nonleaf-8
          • Check-tree-nonleaf-7
          • Check-tree-list-list-10
          • Tree-list-tuple4
          • Check-tree-nonleaf-6
          • Check-tree-nonleaf-5
          • Check-tree-list-list-9
          • Check-tree-nonleaf-4
          • Check-tree-nonleaf-3
          • Check-tree-nonleaf-2
          • Check-tree-nonleaf
          • Check-tree-list-list-8
          • Check-tree-nonleaf-1-1
            • Check-tree-nonleaf-1
            • Check-tree-list-list-7
            • Tree-list-tuple3
            • Pass
            • Check-tree-list-list-6
            • Check-tree-list-list-5
            • Tree=>string
            • Tree-list-tuple2
            • Check-tree-list-list-4
            • Check-tree-list-list-3
            • Check-tree-ichars
            • Check-tree-schars
            • Check-tree-num-seq
            • Check-tree-list-list-2
            • Tree-list-tuple9-result
            • Tree-list-tuple8-result
            • Tree-list-tuple7-result
            • Tree-list-tuple6-result
            • Tree-list-tuple5-result
            • Tree-list-tuple4-result
            • Tree-list-tuple3-result
            • Tree-list-tuple2-result
            • Tree-list-tuple10-result
            • Pass-result
            • Check-tree-list-list-1
            • Tree-info-for-error
            • Check-tree-list-1
            • Check-tree-nonleaf?
            • Check-tree-leafterm
          • 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
        • Pfcs
        • Wp-gen
        • Dimacs-reader
        • Legacy-defrstobj
        • Proof-checker-array
        • Soft
        • C
        • Farray
        • Rp-rewriter
        • Instant-runoff-voting
        • Imp-language
        • Sidekick
        • Leftist-trees
        • Java
        • Taspi
        • Riscv
        • Bitcoin
        • Des
        • Ethereum
        • X86isa
        • Sha-2
        • Yul
        • Zcash
        • Proof-checker-itp13
        • Regex
        • ACL2-programming-language
        • Json
        • Jfkr
        • Equational
        • Cryptography
        • Poseidon
        • Where-do-i-place-my-book
        • Axe
        • Aleo
        • Bigmems
        • Builtins
        • Execloader
        • Solidity
        • Paco
        • Concurrent-programs
        • Bls12-377-curves
      • Debugging
      • Std
      • Community
      • Proof-automation
      • Macro-libraries
      • ACL2
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Tree-utilities

    Check-tree-nonleaf-1-1

    Check if an ABNF tree has a given rule name or no rule name as root and a list of one list of one subtree, returning the subtree if successful.

    Signature
    (check-tree-nonleaf-1-1 tree rulename?) → sub
    Arguments
    tree — Guard (treep tree).
    rulename? — Guard (acl2::maybe-stringp rulename?).
    Returns
    sub — Type (tree-resultp sub).

    Definitions and Theorems

    Function: check-tree-nonleaf-1-1

    (defun check-tree-nonleaf-1-1 (tree rulename?)
      (declare (xargs :guard (and (treep tree)
                                  (acl2::maybe-stringp rulename?))))
      (let ((__function__ 'check-tree-nonleaf-1-1))
        (declare (ignorable __function__))
        (b* (((okf trees)
              (check-tree-nonleaf-1 tree rulename?)))
          (check-tree-list-1 trees))))

    Theorem: tree-resultp-of-check-tree-nonleaf-1-1

    (defthm tree-resultp-of-check-tree-nonleaf-1-1
      (b* ((sub (check-tree-nonleaf-1-1 tree rulename?)))
        (tree-resultp sub))
      :rule-classes :rewrite)

    Theorem: tree-count-of-check-tree-nonleaf-1-1

    (defthm tree-count-of-check-tree-nonleaf-1-1
      (b* ((?sub (check-tree-nonleaf-1-1 tree rulename?)))
        (implies (not (reserrp sub))
                 (< (tree-count sub) (tree-count tree))))
      :rule-classes :linear)

    Theorem: check-tree-nonleaf-1-1-of-tree-fix-tree

    (defthm check-tree-nonleaf-1-1-of-tree-fix-tree
      (equal (check-tree-nonleaf-1-1 (tree-fix tree)
                                     rulename?)
             (check-tree-nonleaf-1-1 tree rulename?)))

    Theorem: check-tree-nonleaf-1-1-tree-equiv-congruence-on-tree

    (defthm check-tree-nonleaf-1-1-tree-equiv-congruence-on-tree
      (implies (tree-equiv tree tree-equiv)
               (equal (check-tree-nonleaf-1-1 tree rulename?)
                      (check-tree-nonleaf-1-1 tree-equiv rulename?)))
      :rule-classes :congruence)

    Theorem: check-tree-nonleaf-1-1-of-maybe-string-fix-rulename?

    (defthm check-tree-nonleaf-1-1-of-maybe-string-fix-rulename?
     (equal
        (check-tree-nonleaf-1-1 tree (acl2::maybe-string-fix rulename?))
        (check-tree-nonleaf-1-1 tree rulename?)))

    Theorem: check-tree-nonleaf-1-1-maybe-string-equiv-congruence-on-rulename?

    (defthm
      check-tree-nonleaf-1-1-maybe-string-equiv-congruence-on-rulename?
      (implies (acl2::maybe-string-equiv rulename? rulename?-equiv)
               (equal (check-tree-nonleaf-1-1 tree rulename?)
                      (check-tree-nonleaf-1-1 tree rulename?-equiv)))
      :rule-classes :congruence)