forked from boogie-org/boogie
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add example that inserts into a sorted array
- Loading branch information
Showing
2 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
// RUN: %boogie -noinfer -typeEncoding:m -useArrayTheory "%s" > "%t" | ||
// RUN: %diff "%s.expect" "%t" | ||
|
||
// Insertion into a sorted array | ||
|
||
type Tid; | ||
const nil:Tid; | ||
|
||
var {:layer 0,2} A:[int]int; | ||
var {:layer 0,2} count:int; | ||
var {:layer 0,2} lock:Tid; | ||
|
||
function {:inline 1} sorted (A:[int]int, count:int) : bool | ||
{ (forall i:int, j:int :: 0 <= i && i <= j && j < count ==> A[i] <= A[j]) } | ||
|
||
procedure {:atomic}{:layer 2} INSERT ({:linear "tid"} tid:Tid, v:int) | ||
modifies A, count; | ||
{ | ||
var idx:int; // index at which v is written | ||
var A_new:[int]int; | ||
|
||
assert count >= 0; | ||
assert sorted(A, count); | ||
|
||
assume 0 <= idx && idx <= count; | ||
assume (forall i:int :: 0 <= i && i < idx ==> A[i] < v); | ||
assume (forall i:int :: idx <= i && i < count ==> A[i] >= v); | ||
|
||
assume (forall i:int :: i < idx ==> A_new[i] == A[i]); | ||
assume (forall i:int :: idx < i && i < count ==> A_new[i+1] == A[i]); | ||
assume (forall i:int :: count < i ==> A_new[i] == A[i]); | ||
A_new[idx] := v; | ||
|
||
A := A_new; | ||
count := count + 1; | ||
} | ||
|
||
procedure {:layer 1}{:yields}{:refines "INSERT"} insert ({:linear "tid"} tid:Tid, v:int) | ||
requires {:layer 1} tid != nil; | ||
{ | ||
var idx:int; // index at which v is written | ||
var j:int; // loop counter used for shifting | ||
var a:int; // value read from A | ||
var c:int; // value read from count | ||
var {:layer 1} _A:[int]int; | ||
|
||
yield; assert {:layer 1} tid != nil; | ||
call _A := snapshot(); | ||
call acquire(tid); | ||
|
||
idx := 0; | ||
call c := read_count(tid); | ||
call a := read_A(tid, idx); | ||
while (idx < c && a < v) | ||
invariant {:layer 1} 0 <= idx && idx <= count; | ||
invariant {:layer 1} a == A[idx]; | ||
invariant {:layer 1} (forall i:int :: 0 <= i && i < idx ==> A[i] < v); | ||
{ | ||
idx := idx + 1; | ||
call a := read_A(tid, idx); | ||
} | ||
j := c; | ||
while (idx < j) | ||
invariant {:layer 1} idx <= j && j <= count; | ||
invariant {:layer 1} (forall i:int :: i <= j ==> A[i] == _A[i]); | ||
invariant {:layer 1} (forall i:int :: j < i && i <= count ==> A[i] == _A[i-1]); | ||
invariant {:layer 1} (forall i:int :: count < i ==> A[i] == _A[i]); | ||
{ | ||
call a := read_A(tid, j-1); | ||
call write_A(tid, j, a); | ||
j := j - 1; | ||
} | ||
call write_A(tid, idx, v); | ||
call write_count(tid, c+1); | ||
|
||
// let's see if we can proof that A is still sorted | ||
assert {:layer 1} sorted(A, count); | ||
|
||
call release(tid); | ||
yield; | ||
} | ||
|
||
procedure {:layer 1} {:inline 1} snapshot () returns (snapshot: [int]int) | ||
{ | ||
snapshot := A; | ||
} | ||
|
||
// ============================================================================= | ||
|
||
procedure {:both}{:layer 1} READ_A ({:linear "tid"} tid:Tid, i:int) returns (v:int) | ||
{ | ||
assert tid != nil && lock == tid; | ||
v := A[i]; | ||
} | ||
|
||
procedure {:both}{:layer 1} WRITE_A ({:linear "tid"} tid:Tid, i:int, v:int) | ||
modifies A; | ||
{ | ||
assert tid != nil && lock == tid; | ||
A[i] := v; | ||
} | ||
|
||
procedure {:both}{:layer 1} READ_COUNT ({:linear "tid"} tid:Tid) returns (c:int) | ||
{ | ||
assert tid != nil && lock == tid; | ||
c := count; | ||
} | ||
|
||
procedure {:both}{:layer 1} WRITE_COUNT ({:linear "tid"} tid:Tid, c:int) | ||
modifies count; | ||
{ | ||
assert tid != nil && lock == tid; | ||
count := c; | ||
} | ||
|
||
procedure {:right}{:layer 1} ACQUIRE ({:linear "tid"} tid:Tid) | ||
modifies lock; | ||
{ | ||
assert tid != nil; | ||
assume lock == nil; | ||
lock := tid; | ||
} | ||
|
||
procedure {:left}{:layer 1} RELEASE ({:linear "tid"} tid:Tid) | ||
modifies lock; | ||
{ | ||
assert tid != nil && lock == tid; | ||
lock := nil; | ||
} | ||
|
||
procedure {:yields}{:layer 0}{:refines "READ_A"} read_A ({:linear "tid"} tid:Tid, i:int) returns (v:int); | ||
procedure {:yields}{:layer 0}{:refines "WRITE_A"} write_A ({:linear "tid"} tid:Tid, i:int, v:int); | ||
procedure {:yields}{:layer 0}{:refines "READ_COUNT"} read_count ({:linear "tid"} tid:Tid) returns (c:int); | ||
procedure {:yields}{:layer 0}{:refines "WRITE_COUNT"} write_count ({:linear "tid"} tid:Tid, c:int); | ||
procedure {:yields}{:layer 0}{:refines "ACQUIRE"} acquire ({:linear "tid"} tid:Tid); | ||
procedure {:yields}{:layer 0}{:refines "RELEASE"} release ({:linear "tid"} tid:Tid); | ||
|
||
// ============================================================================= | ||
|
||
function {:builtin "MapConst"} MapConstBool(bool) : [Tid]bool; | ||
function {:inline}{:linear "tid"} TidCollector(tid:Tid) : [Tid]bool | ||
{ | ||
MapConstBool(false)[tid := true] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
|
||
Boogie program verifier finished with 26 verified, 0 errors |