vote up 7 vote down star
2

Does anyone know any examples of the following?

  1. Proof developments about regular expressions (possibly extended with backreferences) in proof assistants (such as Coq).
  2. Programs in dependently-typed languages (such as Agda) about regular expressions.
flag
According to "Mastering Regular Expressions" (a book I recommend, see regex.info) regular expressions are quite non-regular in fact due to their enhanced abilities, so mathematical theory is only available for simple/basic regex types. Does this have implications to use them in proof assistance? – Peter Kofler Jun 8 at 10:09
Yes, it does: it makes proofs more complicated :) In fact, by "regular expressions" I mean the basic ones that are strictly defined in formal language theory. I'd like to know if there were attempts to specify backreferences or other non-regular constructions. I'm aware of quite limited formalisations of basic r.e. in Nuprl and Coq. Since these formalisations stemmed from theory, rather than programming practice, they didn't account for non-regular features. – volodyako Jun 8 at 14:27

3 Answers

vote up 3 vote down

See Perl Regular Expression Matching is NP-Hard

Regex matching is NP-hard when regexes are allowed to have backreferences.

Reduction of 3-CNF-SAT to Perl Regular Expression Matching

[...] 3-CNF-SAT is NP-complete. If there were an efficient (polynomial-time) algorithm for computing whether or not a regex matched a certain string, we could use it to quickly compute solutions to the 3-CNF-SAT problem, and, by extension, to the knapsack problem, the travelling salesman problem, etc. etc.

link|flag
3  
Even more than that: regular expression pattern matching with backreferences has been proved to be NP-complete by Alfred Aho quite some time ago by reduction from the vertex-cover problem. See Theorem 6.2 from [A. V. Aho. Algorithms for finding patterns in strings. In Jan van Leeuwen, editor, Handbook of Theoretical Computer Science, volume A: Algorithms and Complexity, pages 255–300. The MIT Press, 1990]. – volodyako Jun 14 at 8:23
vote up 1 vote down

I don't know of any development that treats regular expressions by themselves.

Finite automata, however, relevant since NFAs are the standard way to match those regular expressions, have been studied in NuPRL. Have a look at : Robert L. Constable, Paul B. Jackson, Pavel Naumov, Juan Uribe. Constructively Formalizing Automata Theory.

Should you be interested in approaching those formal languages through algebra, esp. developing finite semigroup theory, there are a number of algebra libraries developed in various theorem provers that you could think of using, with one particularly efficient in a finite setting.

link|flag
vote up 1 vote down

Certified Programming with Dependent Types has a section on creating a verified regular expression matcher. Coq Contribs has an automata contribution that might be useful.

link|flag
Right, I have also noted this paragraph in CPDT a few weeks ago. It does hit the ball. As per the automata contribution, it certainly is. However, it uses axioms. E.g., 4 axioms in the proof that regular languages are defined by NFAs (module RatReg). A proof without axioms is also possible (but not contained in the Coq contributions). – volodyako Aug 14 at 21:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.