mirror of
https://github.com/AdaCore/why3.git
synced 2026-02-12 12:34:55 -08:00
stdlib, examples: remove redundant "import"
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user