-
Notifications
You must be signed in to change notification settings - Fork 273
Remove java dependency in string solver #1872
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
Remove java dependency in string solver #1872
Conversation
This makes the function more robust and avoid dependencies on java types.
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.
Thanks. That's a good start!
What about the following:
- https://github.com/diffblue/cbmc/blob/develop/src/solvers/refinement/string_constraint_generator.h#L391
- https://github.com/diffblue/cbmc/blob/develop/src/solvers/refinement/string_constraint_generator_format.cpp#L421
- https://github.com/diffblue/cbmc/blob/develop/src/solvers/refinement/string_refinement.cpp#L1126
Are they generic enough to remove the word "java"?
The CMake failure highlights that there is a problem in
Having a single user of |
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.
Fine once the other issues have been addressed.
Cherry-picked two commits to make this move. |
closing as the changes are in develop now |
This removes the dependencies on java_bytecode from the solver (see #1869)