-
Notifications
You must be signed in to change notification settings - Fork 1
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
Implement SharpSAT Solution Space Approximator for Exact Qrisp Sat Solver #112
base: develop
Are you sure you want to change the base?
Conversation
tubadzin
commented
Jan 13, 2025
•
edited
Loading
edited
- Works on Add exact qrisp SAT solver #110
- This PR depends on Update Docker Image for Qrisp SAT Solver #111
- This branch implements SharpSAT binary, which approximates the number of solutions for a given SAT dimac problem. It is needed for the exact qrisp sharp sat solver, as it requires knowing the solution space beforehand.
@@ -37,6 +37,7 @@ custom.script.hs_knapsack=${custom.directory}/hs-knapsack/knapsack.py | |||
custom.directory.lkh.directory=${custom.directory}/lkh | |||
custom.script.lkh=${custom.directory.lkh.directory}/vrp_lkh.py | |||
custom.directory.berger-vrp=${custom.directory}/berger-vrp | |||
custom.directory.sharp-sat.directory=${custom.directory}/sharp-sat |
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.
As this SharpSat solver will only run on Linux (for now), it would be good to make it unstartable on other systems.
Instead of adding the path here, add it to the application-linux.properties.
This Linux properties file is only loaded on linux systems.
You can add a catch for a FileNotFoundException (or something similar) once you add the SharpSat problem mask to catch this aswell.
…t more reliable and currently still under development
ee19562
to
f684962
Compare
…rocessRunner methods
Quality Gate failedFailed conditions |