• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
      • Theories
      • Rule-classes
      • Proof-builder
      • Recursion-and-induction
      • Hons-and-memoization
      • Events
      • Parallelism
      • History
      • Programming
        • Defun
        • Declare
        • System-utilities
        • Stobj
        • State
        • Mutual-recursion
        • Memoize
        • Mbe
        • Io
        • Defpkg
        • Apply$
        • Loop$
        • Programming-with-state
        • Arrays
        • Characters
        • Time$
        • Defmacro
        • Loop$-primer
        • Fast-alists
        • Defconst
        • Evaluation
        • Guard
        • Equality-variants
        • Compilation
        • Hons
        • ACL2-built-ins
        • Developers-guide
        • System-attachments
        • Advanced-features
        • Set-check-invariant-risk
        • Numbers
        • Efficiency
        • Irrelevant-formals
        • Introduction-to-programming-in-ACL2-for-those-who-know-lisp
        • Redefining-programs
        • Lists
        • Invariant-risk
        • Errors
        • Defabbrev
        • Conses
        • Alists
        • Set-register-invariant-risk
        • Strings
          • Std/strings
            • Pretty-printing
            • Printtree
            • Base64
            • Charset-p
            • Strtok!
            • Cases
            • Concatenation
            • Html-encoding
            • Character-kinds
            • Substrings
              • Istrpos
              • Strrpos
              • Strpos
              • Collect-syms-with-isubstr
              • Istrprefixp
              • Collect-strs-with-isubstr
              • Iprefixp
              • Strsuffixp
              • Firstn-chars
              • Strprefixp
                • Strprefixp-impl
                • Isubstrp
                • Substrp
              • Strtok
              • Equivalences
              • Url-encoding
              • Lines
              • Explode-implode-equalities
              • Ordering
              • Numbers
              • Pad-trim
              • Coercion
              • Std/strings/digit-to-char
              • Substitution
              • Symbols
            • String-listp
            • Stringp
            • Length
            • Search
            • Remove-duplicates
            • Position
            • Coerce
            • Concatenate
            • Reverse
            • String
            • Subseq
            • Substitute
            • String-upcase
            • String-downcase
            • Count
            • Char
            • String<
            • String-equal
            • String-utilities
            • String-append
            • String>=
            • String<=
            • String>
            • Hex-digit-char-theorems
            • String-downcase-gen
            • String-upcase-gen
          • Program-wrapper
          • Get-internal-time
          • Basics
          • Packages
          • Oracle-eval
          • Defmacro-untouchable
          • <<
          • Primitive
          • Revert-world
          • Unmemoize
          • Set-duplicate-keys-action
          • Symbols
          • Def-list-constructor
          • Easy-simplify-term
          • Defiteration
          • Fake-oracle-eval
          • Defopen
          • Sleep
        • Operational-semantics
        • Real
        • Start-here
        • Debugging
        • Miscellaneous
        • Output-controls
        • Macros
        • Interfacing-tools
      • Interfacing-tools
      • Hardware-verification
      • Software-verification
      • Math
      • Testing-utilities
    • Strprefixp

    Strprefixp-impl

    Fast implementation of strprefixp.

    Definitions and Theorems

    Function: strprefixp-impl

    (defun strprefixp-impl (x y xn yn xl yl)
     (declare (type string x)
              (type string y)
              (type integer xn)
              (type integer yn)
              (type integer xl)
              (type integer yl)
              (xargs :guard (and (stringp x)
                                 (stringp y)
                                 (natp xn)
                                 (natp yn)
                                 (natp xl)
                                 (natp yl)
                                 (= xl (length x))
                                 (= yl (length y))
                                 (<= xn (length x))
                                 (<= yn (length y)))))
     (cond
       ((mbe :logic (zp (- (nfix xl) (nfix xn)))
             :exec (int= xn xl))
        t)
       ((mbe :logic (zp (- (nfix yl) (nfix yn)))
             :exec (int= yn yl))
        nil)
       ((eql (the character (char x xn))
             (the character (char y yn)))
        (mbe :logic (strprefixp-impl x y (+ (nfix xn) 1)
                                     (+ (nfix yn) 1)
                                     xl yl)
             :exec (strprefixp-impl (the string x)
                                    (the string y)
                                    (the integer (+ (the integer xn) 1))
                                    (the integer (+ (the integer yn) 1))
                                    (the integer xl)
                                    (the integer yl))))
       (t nil)))

    Theorem: strprefixp-impl-elim

    (defthm strprefixp-impl-elim
      (implies (and (force (stringp x))
                    (force (stringp y))
                    (force (natp xn))
                    (force (natp yn))
                    (force (= xl (length x)))
                    (force (= yl (length y))))
               (equal (strprefixp-impl x y xn yn xl yl)
                      (prefixp (nthcdr xn (explode x))
                               (nthcdr yn (explode y))))))