Skip to content
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

Labels should not prevent the VC generator from decomposing an invariant #3019

Open
konnov opened this issue Oct 13, 2024 · 0 comments
Open
Assignees
Labels
feature A new feature or functionality

Comments

@konnov
Copy link
Collaborator

konnov commented Oct 13, 2024

Normally, the VC generator decomposes an invariant into two smaller invariants:

Inv ==
  /\ A
  /\ B

Inv is decomposed into:

Inv_0 == A
Inv_1 == B

However, if we annotate the invariant with a label, which is quite useful to see what has been violated, then the VC generator does not go inside the expression under the label:

Inv ==
  InInv ::
    /\ A
    /\ B

This should be quite easy to fix.

@konnov konnov added the feature A new feature or functionality label Oct 13, 2024
@konnov konnov self-assigned this Oct 13, 2024
@konnov konnov changed the title Labels should not stop VC generator from decomposing an invariant Labels should not prevent the VC generator from decomposing an invariant Oct 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature A new feature or functionality
Projects
None yet
Development

No branches or pull requests

1 participant