-
Notifications
You must be signed in to change notification settings - Fork 265
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Speed up dafny verify
by reducing memory pressure
#5827
Changes from 21 commits
cddc25e
d4c5a8c
991ff2e
582d16f
87096ef
abc628c
c64a112
4cb6f4a
629b2f9
23b83ca
8a7e1c5
69e3d94
2915dd4
7f9ca76
63c93de
0f48550
e65de8d
896f87b
e65e374
a0ab5c1
0e95710
8419a62
b823a08
6ae6071
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,15 +11,6 @@ Iterators.dfy(177,27): Error: assertion might not hold | |
Iterators.dfy(208,6): Error: an assignment to _new is only allowed to shrink the set | ||
Iterators.dfy(212,20): Error: assertion might not hold | ||
Iterators.dfy(234,20): Error: assertion might not hold | ||
Iterators.dfy(251,9): Error: decreases clause might not decrease | ||
Iterators.dfy(274,9): Error: decreases clause might not decrease | ||
Iterators.dfy(284,31): Error: decreases clause might not decrease | ||
Iterators.dfy(296,9): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(317,9): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(326,31): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(343,9): Error: decreases clause might not decrease | ||
Iterators.dfy(353,31): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(370,9): Error: decreases clause might not decrease | ||
Iterators.dfy(413,16): Error: this invariant could not be proved to be maintained by the loop | ||
Related message: loop invariant violation | ||
Iterators.dfy(414,21): Error: this invariant could not be proved to be maintained by the loop | ||
|
@@ -40,5 +31,14 @@ Iterators.dfy(461,21): Error: this invariant could not be proved to be maintaine | |
Related message: loop invariant violation | ||
Iterators.dfy(470,4): Error: possible violation of yield-ensures condition | ||
Iterators.dfy(451,21): Related location: this proposition could not be proved | ||
Iterators.dfy(251,9): Error: decreases clause might not decrease | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why did the ordering change? Seems like a regression since we've been better about keeping these in order lately. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's unavoidable, since we want to verify one module at a time to be able to release memory after verifying that module. When nested modules occur, the contents of different modules can be intertwined. method A
module Nested {
method B
}
method C We can do A,C,B or B,A,C, but we can no longer do A,B,C if we verify entire modules at a time. |
||
Iterators.dfy(274,9): Error: decreases clause might not decrease | ||
Iterators.dfy(284,31): Error: decreases clause might not decrease | ||
Iterators.dfy(296,9): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(317,9): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(326,31): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(343,9): Error: decreases clause might not decrease | ||
Iterators.dfy(353,31): Error: cannot prove termination; try supplying a decreases clause | ||
Iterators.dfy(370,9): Error: decreases clause might not decrease | ||
|
||
Dafny program verifier finished with 35 verified, 30 errors |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can the help text document the difference between the levels?