The actual problem
| 115 | public: |
| 116 | /// The actual problem |
| 117 | Sat(const SatOptions& opt) |
| 118 | : Script(opt) { |
| 119 | parseDIMACS(opt.filename.c_str()); |
| 120 | branch(*this, x, BOOL_VAR_AFC_MAX(), BOOL_VAL_MIN()); |
| 121 | } |
| 122 | |
| 123 | /// Constructor for cloning |
| 124 | Sat(Sat& s) : Script(s) { |
nothing calls this directly
no test coverage detected