-
Notifications
You must be signed in to change notification settings - Fork 76
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
Add option for manual restarting of globals #573
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sim642
added
performance
Analysis time, memory usage
pr-dependency
Depends or builds on another PR, which should be merged before
labels
Jan 27, 2022
sim642
changed the title
Add option for manual rstarting of globals
Add option for manual restarting of globals
Jan 27, 2022
…cted by the user. Adds the option incremental.restart_globs.globs, where a user can provide a list of global variables which should be restarted.
sim642
reviewed
Jan 27, 2022
…ve usage of a mutable hashtable
Co-authored-by: Simmo Saan <simmo.saan@gmail.com>
…leaf. Copied and adapted code from destabilize_with_side
…a global variable
sim642
reviewed
Jan 28, 2022
sim642
removed
the
pr-dependency
Depends or builds on another PR, which should be merged before
label
Jan 28, 2022
Manual restarting should not cause transitively restarting other unknowns, even in case that restart.sided.enabled is true. The destabilize function relies on a reference to chose the function whose implementation is actually used and may use the destabilize_with_side internally. This is avoided by calling destabilze_normal.
… according to option, but cannot be found in the CIL-file.
sim642
reviewed
Feb 1, 2022
sim642
approved these changes
Feb 11, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Add option to restart unknowns belonging to a list of global variables selected by the user.
The list can be passed with
incremental.restart_globs.globs
(which should be renamed before merging this).The option is marked to conflict with
incremental.restart.enabled
which performs an automatic restarting.Closes #543. Depends on #549.