Inductive proofs in Dafny #4132
Answered
by
atomb
rahxephon89
asked this question in
Q&A
-
Hi, I am trying to understand how Dafny proves inductive properties by using the following code example:
This is the boogie code generated by Dafny, which has been minimized manually.
I understand the meaning of most definitions and axioms in the code above but could not figure out how the SMT solver can prove it, especially the use of LayerType. Could anyone give some hints on the mechanism at the backend ? Thanks |
Beta Was this translation helpful? Give feedback.
Answered by
atomb
Jun 5, 2023
Replies: 1 comment 3 replies
-
I think that this paper could be a helpful resource in understanding how |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
rahxephon89
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think that this paper could be a helpful resource in understanding how
LayerType
works.