summaryrefslogtreecommitdiff
path: root/test/unit/prop
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-08-12 00:08:32 -0500
committerGitHub <noreply@github.com>2020-08-11 22:08:32 -0700
commit66836c5fd879c92bddbca52d4b1802213f227a44 (patch)
treeb0434cc3be08802a0028193ca91bda2c0e802af6 /test/unit/prop
parentb5b2858807d48136807aba29bb53a1e91cfacc6e (diff)
Split SmtEngineState from SmtEngine (#4855)
This splits a utility for tracking the "basic" state of the SmtEngine. This class tracks its high-level state, including the "SMT mode", last/expected status and manages the contexts. It is not responsible more detailed state information (e.g. the assertions).
Diffstat (limited to 'test/unit/prop')
-rw-r--r--test/unit/prop/cnf_stream_white.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/prop/cnf_stream_white.h b/test/unit/prop/cnf_stream_white.h
index 24dd5ae62..f0253fdbf 100644
--- a/test/unit/prop/cnf_stream_white.h
+++ b/test/unit/prop/cnf_stream_white.h
@@ -139,7 +139,7 @@ class CnfStreamWhite : public CxxTest::TestSuite {
// Notice that this unit test uses the theory engine of a created SMT
// engine d_smt. We must ensure that d_smt is properly initialized via
// the following call, which constructs its underlying theory engine.
- d_smt->finalOptionsAreSet();
+ d_smt->finishInit();
d_theoryEngine = d_smt->getTheoryEngine();
d_satSolver = new FakeSatSolver();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback