summaryrefslogtreecommitdiff
path: root/src/prop/cnf_stream.h
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@gmail.com>2012-02-20 20:04:31 +0000
committerMorgan Deters <mdeters@gmail.com>2012-02-20 20:04:31 +0000
commit3baf3bde60c118468b6af869942a9d9a7e3fb3d6 (patch)
treee09cfcdc55da7ecfb16dbb48143ffc147fdcafe2 /src/prop/cnf_stream.h
parent504a913380fb2ee2b90571f6673690695f55fc9b (diff)
fix sharing issue for portfolio (full lit-to-node map wasn't being kept in my previous checkin)
Diffstat (limited to 'src/prop/cnf_stream.h')
-rw-r--r--src/prop/cnf_stream.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/prop/cnf_stream.h b/src/prop/cnf_stream.h
index c9fd4a08b..4b16a02b9 100644
--- a/src/prop/cnf_stream.h
+++ b/src/prop/cnf_stream.h
@@ -187,7 +187,7 @@ public:
* @param satSolver the sat solver to use
* @param registrar the entity that takes care of preregistration of Nodes
* @param fullLitToNodeMap maintain a full SAT-literal-to-Node mapping,
- * even for non-theory literals.
+ * even for non-theory literals
*/
CnfStream(SatInputInterface* satSolver, theory::Registrar registrar, bool fullLitToNodeMap = false);
@@ -286,8 +286,10 @@ public:
* Constructs the stream to use the given sat solver.
* @param satSolver the sat solver to use
* @param registrar the entity that takes care of pre-registration of Nodes
+ * @param fullLitToNodeMap maintain a full SAT-literal-to-Node mapping,
+ * even for non-theory literals
*/
- TseitinCnfStream(SatInputInterface* satSolver, theory::Registrar registrar);
+ TseitinCnfStream(SatInputInterface* satSolver, theory::Registrar registrar, bool fullLitToNodeMap = false);
private:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback