-
Notifications
You must be signed in to change notification settings - Fork 274
Make set_indices a template #4333
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
Make set_indices a template #4333
Conversation
eade946
to
f2e7514
Compare
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.
Perhaps TODO
isn't the right formulation, but the idea that we're supposed to be using the type system to track which expressions are renamed, and that reaching those TODOs means that doesn't fully happen yet (but we don't want to abruptly make that fatal) seems good to me.
This comment should have been on #3986 (and @tautschnig already commented on that point) |
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.
This PR failed Diffblue compatibility checks (cbmc commit: f2e7514).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/103336929
Status will be re-evaluated on next push.
Common spurious failures:
-
the cbmc commit has disappeared in the mean time (e.g. in a force-push)
-
the author is not in the list of contributors (e.g. first-time contributors).
-
the compatibility was already broken by an earlier merge.
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.
This PR failed Diffblue compatibility checks (cbmc commit: eade946).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/103336871
Status will be re-evaluated on next push.
Common spurious failures:
-
the cbmc commit has disappeared in the mean time (e.g. in a force-push)
-
the author is not in the list of contributors (e.g. first-time contributors).
-
the compatibility was already broken by an earlier merge.
f2e7514
to
c7b92fc
Compare
Make return type of set_l*_indices be a renamedt [blocks: #4333]
This will be necessary to make them templates
This makes the interface of goto_symex_statet simpler and can simplify code of function templates using set_indices
Now tha set_indices is a template we don't need the case disjunction on the level parameter.
c7b92fc
to
78cf428
Compare
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.
This PR failed Diffblue compatibility checks (cbmc commit: 78cf428).
Build URL: https://travis-ci.com/diffblue/test-gen/builds/103368256
Status will be re-evaluated on next push.
Common spurious failures:
-
the cbmc commit has disappeared in the mean time (e.g. in a force-push)
-
the author is not in the list of contributors (e.g. first-time contributors).
-
the compatibility was already broken by an earlier merge.
This makes the interface of
goto_symex_statet
simpler and can simplifycode of function templates using set_indices
This is based on #3986(merged)