Skip to content

Commit

Permalink
Adjusting Rlimitouts0 test for more efficient Z3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Emmi committed Dec 31, 2019
1 parent 262f43b commit 8385b53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Test/test2/Rlimitouts0.bpl
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ procedure TestRlimit1(in: [int]int, len: int) returns (out: [int]int);
requires 0 < len;
ensures (forall j: int :: 0 <= j && j < len ==> out[j] == in[j]);

implementation {:rlimit 60000} TestRlimit1(in: [int]int, len: int) returns (out: [int]int)
implementation {:rlimit 6000000} TestRlimit1(in: [int]int, len: int) returns (out: [int]int)
{
var i : int;

Expand Down

0 comments on commit 8385b53

Please sign in to comment.