mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-12 21:08:45 +00:00
Remove import
This commit is contained in:
@@ -6,10 +6,10 @@
|
||||
|
||||
module BinarySearch
|
||||
|
||||
use import int.Int
|
||||
use import int.ComputerDivision
|
||||
use import ref.Ref
|
||||
use import array.Array
|
||||
use int.Int
|
||||
use int.ComputerDivision
|
||||
use ref.Ref
|
||||
use array.Array
|
||||
|
||||
let binary_search (a : array int) (v : int) : int
|
||||
requires { forall i1 i2 : int. 0 <= i1 < i2 < length a -> a[i1] <= a[i2] }
|
||||
|
||||
Reference in New Issue
Block a user