Book scanning problem
To add a solver named foo to the project follow these steps:
- Create the file
cpp/solvers/foo.cpp
folder, - Copy paste the following lines
#include <books.hpp>
Solver fooSolver([](Problem &problem, const Options &) {
Solution solution;
// YOUR SOLVER IMPLEMENTATION HERE
return solution;
});