Does anyone know any examples of the following?
- Proof developments about regular expressions (possibly extended with backreferences) in proof assistants (such as Coq).
- Programs in dependently-typed languages (such as Agda) about regular expressions.
|
2
|
Does anyone know any examples of the following?
|
||||
|
|
|
See Perl Regular Expression Matching is NP-Hard
|
||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|