summaryrefslogtreecommitdiff
path: root/src/prop/sat_solver.h
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-26 19:42:25 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-03-26 19:42:25 +0000
commit6fdc62f34bb1d04b84dfd628ec16335b8f02385e (patch)
tree44755057990ad99f6f47904a0201d33c9be18c9c /src/prop/sat_solver.h
parent1ed3b1803bd0a25c56a62d290cd5dcb64c5085ce (diff)
Global registry of SAT solvers, where they are registered at compile time. The available SAT solvers can be seen with the --show-sat-solvers option.
Diffstat (limited to 'src/prop/sat_solver.h')
-rw-r--r--src/prop/sat_solver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/prop/sat_solver.h b/src/prop/sat_solver.h
index eb694852c..61c67ed5f 100644
--- a/src/prop/sat_solver.h
+++ b/src/prop/sat_solver.h
@@ -21,7 +21,8 @@
#ifndef __CVC4__PROP__SAT_MODULE_H
#define __CVC4__PROP__SAT_MODULE_H
-#include <stdint.h>
+#include <string>
+#include <stdint.h>
#include "util/options.h"
#include "util/stats.h"
#include "context/cdlist.h"
@@ -166,7 +167,6 @@ public:
/** Create a new boolean variable in the solver. */
virtual SatVariable newVar(bool theoryAtom = false) = 0;
-
/** Check the satisfiability of the added clauses */
virtual SatValue solve() = 0;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback