dlinear  0.0.1
Delta-complete SMT solver for linear programming
Loading...
Searching...
No Matches
SatResult.h
1
7#pragma once
8
9#include <ostream>
10
11namespace dlinear {
12
24
25std::ostream &operator<<(std::ostream &os, const SatResult &sat_result);
26
27} // namespace dlinear
28
29#ifdef DLINEAR_INCLUDE_FMT
30
31#include "dlinear/util/logging.h"
32
33OSTREAM_FORMATTER(dlinear::SatResult)
34
35#endif
Global namespace for the dlinear library.
SatResult
Result of running the theory solver over the literals decided by the SAT solver.
Definition SatResult.h:17
@ 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.