repo.or.cz
/
why3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'mailmap' into 'master'
[why3.git]
/
examples
/
tests
/
regexp-test.why
blob
4d48499bb990e95dab4246651c58235410c5c332
1
theory Test
2
3
use seq.Seq
4
clone regexp.Regexp with type char = int
5
6
lemma empty_is_empty: forall w: word. not (mem w Empty)
7
8
constant a: int = 0
9
constant b: int = 1
10
constant c: int = 2
11
12
goal G: mem (cons a (cons b empty)) (Concat (Char a) (Star (Char b)))
13
14
end
15