stdlib, examples: remove redundant "import"

This commit is contained in:
Andrei Paskevich
2018-06-15 16:45:31 +02:00
parent 7b0929a761
commit eae547d95f
431 changed files with 5261 additions and 5261 deletions

View File

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