-
Notifications
You must be signed in to change notification settings - Fork 17
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
Print bidings for CPNs #161
Conversation
…tion is different from NONE.
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.
Small changes, should be okay as is.
: _builder(b), | ||
_stable(b), | ||
_symmetry(symmetry), | ||
_partition(partition), | ||
_fixed_point(fixed_point) {} | ||
_fixed_point(fixed_point) {_print_bindings=print_bindings; } |
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.
Change to
_fixed_point(fixed_point), _print_bindings(print_bindings) {}
src/main.cpp
Outdated
@@ -159,7 +159,7 @@ int main(int argc, const char** argv) { | |||
options.computePartition, options.symmetricVariables, | |||
options.computeCFP, out, | |||
options.partitionTimeout, options.max_intervals, options.max_intervals_reduced, | |||
options.intervalTimeout, options.cpnOverApprox); | |||
options.intervalTimeout, options.cpnOverApprox, options.trace != TraceLevel::None); |
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.
I would recommend making a new option.
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.
I have introduced a new switch option -b --bindings
Added the posibility to print bindings for CPNs whenever the trace option is different from NONE.