-
Notifications
You must be signed in to change notification settings - Fork 16
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
essence prime backend tool (DRAFT) #423
base: main
Are you sure you want to change the base?
Conversation
solvers/sr/src/essence_solver.rs
Outdated
use std::path::{Path, PathBuf}; | ||
use rand::Rng; | ||
|
||
pub struct EssenceSolver { |
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.
EssenceSolver isn't a good name for this, I'd say. It's either EssencePrimeSolver or SavileRowAsSolver maybe? But I think the files are at the right place and you will very quickly beat @niklasdewally's minion backend in terms of completeness :)
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.
Yes I agree. Will change right away 😃
just to note: this is as per #419 @niklasdewally did you manage to take a look at @ewilbert7's code? you set up the solver adaptor abstraction, would be good to get your feedback. |
You should put your solver adaptor code somewhere in We only did solvers as separate crates for Minion / Chuffed because getting their apis into rust from C took a lot of lines of code and writing Rust bindings - if you don't need to do this, you can stick it all in core :) Apart from that LGTM so far! |
This is how we call Conjure to get all solutions. |
Code and Documentation Coverage ReportDocumentation CoverageClick to view documentation coverage for this PR
Click to view documentation coverage for main
Code Coverage SummaryThis PR: Detailed Report
Main: Detailed Report
Coverage Main & PR Coverage ChangeLines coverage changed by -0.90% and covered lines changed by 0
Functions coverage changed by -0.90% and covered lines changed by 0
Branches... coverage: No comparison data available |
Latest Commit Updates:
|
Feedback 27th Nov
|
The pull request is marked as stale because it has been inactive for 30 days. If there is no new activity it will be automatically closed in 5 days. |
FYI: I have since implemented some debugging pretty printing stuff that may be helpful here.
|
In the draft phase of building the Essence ' backend tool.
Updates