Replies: 2 comments
-
If you want to browse a preview, here are the lemmas that needed help. |
Beta Was this translation helpful? Give feedback.
0 replies
-
We are working towards a-la-carte additional automation, that will hopefully help address this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a module with two pairs of mutually-recursive definitions,
can_crop_head_records
andcrop_head_records
. In the inductive proofs ofcan_crop_monotonic
andcan_crop_more_yields_some
, I had to add explicit assertion triggers to instantiate the "other half" of the corresponding definitions.Dafny didn't need that extra help. The finished proofs are quite a lot more cluttered, and the discovery process was painful. I did get diagnostics that said
Note: this function is recursive with fuel 1
, which helped me guess the problem, but I don't think that would be much help to a new user.Repro:
Beta Was this translation helpful? Give feedback.
All reactions