summaryrefslogtreecommitdiff
path: root/src/prop/prop_engine.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/prop/prop_engine.h')
-rw-r--r--src/prop/prop_engine.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/prop/prop_engine.h b/src/prop/prop_engine.h
index 2d4e08db7..f3b1ccaf3 100644
--- a/src/prop/prop_engine.h
+++ b/src/prop/prop_engine.h
@@ -157,7 +157,7 @@ public:
/**
* Create a PropEngine with a particular decision and theory engine.
*/
- PropEngine(TheoryEngine*, DecisionEngine*, context::Context*);
+ PropEngine(TheoryEngine*, DecisionEngine*, context::Context* satContext, context::Context* userContext);
/**
* Destructor.
@@ -260,6 +260,11 @@ public:
bool hasValue(TNode node, bool& value) const;
/**
+ * Returns the Boolean variables known to the SAT solver.
+ */
+ void getBooleanVariables(std::vector<TNode>& outputVariables) const;
+
+ /**
* Ensure that the given node will have a designated SAT literal
* that is definitionally equal to it. The result of this function
* is that the Node can be queried via getSatValue().
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback