Skip to content

Commit

Permalink
Remove redundant instantiate, add stronger post to write_5 example
Browse files Browse the repository at this point in the history
  • Loading branch information
septract committed Jul 20, 2024
1 parent 6a1864e commit c7aa17b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/example-archive/dafny-tutorial/working/linear_search.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ int linear_search(int *a, int length, int key)
each (i32 j; 0i32 <= j && j < idx) {IndexPre[j] != key}; @*/
{
/*@ extract Owned<int>, idx; @*/
/*@ instantiate good<int>, idx; @*/
if (*(a + idx) == key)
{
return idx;
Expand Down
9 changes: 7 additions & 2 deletions src/example-archive/simple-examples/working/write_5.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ void write_5(int *pair)
take Cell2Pre = Owned(pair + 1i32); @*/
/*@ ensures
take Cell1Post = Owned(pair);
take Cell2Post = Owned(pair + 1i32); @*/
take Cell2Post = Owned(pair + 1i32);
Cell1Post == 7i32;
Cell2Post == 8i32; @*/
{
pair[0] = 7;
pair[1] = 8;
Expand All @@ -18,7 +20,10 @@ void write_5_alt(int *pair)
/*@ requires
take PairPre = each (i32 j; j == 0i32 || j == 1i32) {Owned(pair + j)}; @*/
/*@ ensures
take PairPost = each (i32 j; j == 0i32 || j == 1i32) {Owned(pair + j)}; @*/
take PairPost = each (i32 j; j == 0i32 || j == 1i32) {Owned(pair + j)};
PairPost[0i32] == 7i32;
PairPost[1i32] == 8i32;
@*/
{
/*@ extract Owned<int>, 0i32; @*/
pair[0] = 7;
Expand Down

0 comments on commit c7aa17b

Please sign in to comment.