Note: Please attend class and the labs for more description.
You must develop (in Rodin) a defensive version of the binary search:
CONTEXT BSD_C0 ›Binary Search (Defensive) CONSTANTS f ›the abstract array x ›element to look for in the array N › AXIOMS axm1: 0 ≤ N not theorem › axm2: f ∈ −1 ‥ N → ℤ not theorem ›the actual array is f ∈ 1 ‥ N-1 → ℤ axm3: f(−1) < x not theorem ›f(-1) is -∞, i.e. the index before the array axm4: x < f(N) not theorem ›f(N) is ∞, i.e. the index after the array END
We are looking for element x in function f, but it may not be in the range of the function. The initial model is as follows:
MACHINE BSD_M0 ›Specification: we find two consecutive elements of f (f(r) and f(r+1)) such that f(r) ≤ x < f(r+1). We have not yet asserted that r is an index, e.g. -∞ 1 4 3 5 ∞ -1 0 1 2 3 4 x = 3 N = 4 r = 0 SEES BSD_C0 VARIABLES r ›index so that f(r)=x if it is in the array INVARIANTS inv1: −1 ≤ r ∧ r < N not theorem › EVENTS INITIALISATION: not extended ordinary › THEN act1: r :∣ −1 ≤ r' ∧ r' < N › END find: not extended ordinary › ANY i › WHERE grd1: −1 ≤ i ∧ i < N not theorem › grd2: f(i) ≤ x ∧ x < f(i+1) not theorem › THEN act1: r ≔ i › END END
In the initial model, we do not (yet) introduce the precondition that the array is sorted. Thus grd2
finds a potential (but not yet actual) candidate for the index r so that f[r]=x. The comment shows an (unsorted) array for which the model returns index 0 (i.e. f(0)=1) which is not correct. However, together with a later assumption that the array is sorted, grd2
does yield the appropriate binary sort specification. You must now refine the initial model down to final code. The following refinement strategy might be productive:
find
can be refined with the action: b ≔ bool((∃ i · 0 ≤ i ∧ i < N ∧ f(i) = x))
find
(in this refinement) is a theorem: (∃ i · 0 ≤ i ∧ i < N ∧ f(i) = x) ⇔ f(m) = x. The specification for defensive “search” part of binary search is now complete, i.e. b is true precisely when x is in the array, and r is an index so that f[r]=x.Submit your development electronically. As well, use Latex to produce a report of each part of the model as well as the final code. Justify the final code via the merging rules.
Note: You might want to compare this development with the development described by Abrial in the text.
TBA