summaryrefslogtreecommitdiff
path: root/test/unit/prop
diff options
context:
space:
mode:
authorHaniel Barbosa <hanielbbarbosa@gmail.com>2020-09-25 12:24:06 -0300
committerGitHub <noreply@github.com>2020-09-25 12:24:06 -0300
commitd05aee802bf93d23193739e8280d2ad5ce7e7469 (patch)
tree49156d00634f9e9db4279eb6bc2adcdee9ec1bfe /test/unit/prop
parent96da64b450fc6dd6f5cf701587db38adbe8ba177 (diff)
Cleaning and documenting cnf stream (#5134)
Moreover changes assertClause to return a bool, which is gonna be used by the proof cnf stream.
Diffstat (limited to 'test/unit/prop')
-rw-r--r--test/unit/prop/cnf_stream_white.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/unit/prop/cnf_stream_white.h b/test/unit/prop/cnf_stream_white.h
index d64749d6b..ae79e1517 100644
--- a/test/unit/prop/cnf_stream_white.h
+++ b/test/unit/prop/cnf_stream_white.h
@@ -146,11 +146,11 @@ class CnfStreamWhite : public CxxTest::TestSuite {
d_cnfContext = new context::Context();
d_cnfRegistrar = new theory::TheoryRegistrar(d_theoryEngine);
ResourceManager* rm = d_smt->getResourceManager();
- d_cnfStream = new CVC4::prop::TseitinCnfStream(d_satSolver,
- d_cnfRegistrar,
- d_cnfContext,
- &d_smt->getOutputManager(),
- rm);
+ d_cnfStream = new CVC4::prop::CnfStream(d_satSolver,
+ d_cnfRegistrar,
+ d_cnfContext,
+ &d_smt->getOutputManager(),
+ rm);
}
void tearDown() override
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback