modules: stdlib split in files ref and array

This commit is contained in:
Jean-Christophe Filliatre
2011-05-16 18:02:53 +02:00
parent e62f351588
commit 05ca6bebc9
50 changed files with 274 additions and 307 deletions

View File

@@ -8,8 +8,8 @@
module Decrease1
use import int.Int
use import module stdlib.Ref
use import module stdlib.Array
use import module ref.Ref
use import module array.Array
logic decrease1 (a: array int) =
forall i: int. 0 <= i < length a - 1 -> a[i+1] >= a[i] - 1