-
Notifications
You must be signed in to change notification settings - Fork 11
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
Feature/212 provide overview of modified variables #296
Feature/212 provide overview of modified variables #296
Conversation
…modified-variables' into feature/212-provide-overview-of-modified-variables
…s of the same index
…ariables # Conflicts: # include/cse/execution.hpp # src/cpp/execution.cpp
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.
Looks good 👍
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.
Starting to look good! 😃
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
Co-Authored-By: Kristoffer Eide <[email protected]>
…modified-variables' into feature/212-provide-overview-of-modified-variables
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.
💥
Bit unsure who's currently on vacation and not, so review if you can.
This PR implements tracking of variables that currently have an active modifier in cse-core. The getters and setters for modifiers already present in
slave_simulator.cpp
are used to track/untrack avariable_index
with internal sets. Theexecution
can then be queried to return all currently manipulated variables in the simulation. Finally this is stuffed through the C API by transforming into a vector ofcse_variable_id
s.Will only work with the companion PRs for cse-server-go and cse-client.