-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into quantified-magic-wand-maps
- Loading branch information
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
31 changes: 31 additions & 0 deletions
31
src/test/resources/all/annotation/annotationProverArgs.vpr
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,31 @@ | ||
// Any copyright is dedicated to the Public Domain. | ||
// http://creativecommons.org/publicdomain/zero/1.0/ | ||
|
||
// The errors marked in this file are expected only due to the proverArgs annotation, since the properties actually | ||
// hold, but Z3 should not be able to prove that due to the non-linear arithmetic setting. | ||
// We use UnexpectedOutput annotations to mark that they're not actual errors, and that Carbon (which currently does | ||
// not support the proverArgs annotation) should not report them. | ||
|
||
method m1(i: Int, i2: Int) | ||
requires i >= 0 | ||
requires i2 >= 0 | ||
{ | ||
assert i * i2 >= 0 | ||
} | ||
|
||
@proverArgs("smt.arith.nl=false") | ||
method m2(i: Int, i2: Int) | ||
requires i >= 0 | ||
requires i2 >= 0 | ||
{ | ||
//:: UnexpectedOutput(assert.failed:assertion.false, /silicon/issue/000/) | ||
assert i * i2 >= 0 | ||
} | ||
|
||
@proverArgs("smt.arith.nl=true") | ||
method m3(i: Int, i2: Int) | ||
requires i >= 0 | ||
requires i2 >= 0 | ||
{ | ||
assert i * i2 >= 0 | ||
} |
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,25 @@ | ||
// Any copyright is dedicated to the Public Domain. | ||
// http://creativecommons.org/publicdomain/zero/1.0/ | ||
|
||
field v: Int | ||
|
||
field r: Ref | ||
|
||
field l: Ref | ||
|
||
function fun01(x: Ref, b1: Bool, b2: Bool): Int | ||
requires acc(x.v, 1 / 3) | ||
requires acc(x.v, (b1 ? 1 / 3 : none)) | ||
requires acc(x.v, (b2 ? 1 / 3 : none)) | ||
{ | ||
x.v | ||
} | ||
|
||
method test01(x: Ref, b1: Bool, b2: Bool) | ||
requires acc(x.v, write) | ||
{ | ||
x.v := 4 | ||
assert fun01(x, b2, b1) == 4 | ||
//:: ExpectedOutput(assert.failed:assertion.false) | ||
assert false | ||
} |