8#include "dlinear/util/exception.h"
12std::ostream &operator<<(std::ostream &os,
const SatResult &logic) {
15 return os <<
"no-result";
17 return os <<
"unsolved";
23 return os <<
"delta-sat";
25 DLINEAR_UNREACHABLE();
Global namespace for the dlinear library.
SatResult
Result of running the theory solver over the literals decided by the SAT solver.
@ SAT_NO_RESULT
No result has been obtained yet.
@ SAT_SATISFIABLE
The problem is satisfiable.
@ SAT_UNSATISFIABLE
The problem is unsatisfiable.
@ SAT_UNSOLVED
The problem has not been solved. An error may have occurred.
@ SAT_DELTA_SATISFIABLE
The problem is satisfiable, but with a delta >= 0.