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 'upgrade_proofs_coq_8_11_to_8_16' into 'master'
[why3.git]
/
bench
/
check-ce
/
multifile1.mlw
blob
0dc36680c05f356f6418b29b7cbef1e81904e548
1
2
module M
3
use int.Int
4
5
let decr (x: int)
6
ensures { result < x }
7
= x - 1
8
9
let incr (x: int)
10
ensures { result > x }
11
= decr x + 2
12
13
val incr_val (x: int) : int
14
ensures { result > x }
15
16
end