summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-08-03 20:15:43 -0500
committerGitHub <noreply@github.com>2021-08-03 20:15:43 -0500
commit19c382b8666492fa8818444c7f2ee907da3d9479 (patch)
tree4521883b52170aa1d7ac5fadbf29b5bb0f26f087 /test
parent1cb1934d76f25e9f42f51b2eead733b3e9e12236 (diff)
Remove dependencies on smt engine in smt solver (#6965)
This is work towards eliminating circular dependencies on SmtEngine. This simplifies several interfaces and makes it so that SmtSolver does not take a pointer to its parent SmtEngine. It is also work towards eliminating the output manager, which is now subsumed by Env.
Diffstat (limited to 'test')
-rw-r--r--test/unit/prop/cnf_stream_white.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/prop/cnf_stream_white.cpp b/test/unit/prop/cnf_stream_white.cpp
index 4dfd7a1bb..bc5bfe8f1 100644
--- a/test/unit/prop/cnf_stream_white.cpp
+++ b/test/unit/prop/cnf_stream_white.cpp
@@ -115,7 +115,7 @@ class TestPropWhiteCnfStream : public TestSmt
new cvc5::prop::CnfStream(d_satSolver.get(),
d_cnfRegistrar.get(),
d_cnfContext.get(),
- &d_smtEngine->getOutputManager(),
+ &d_smtEngine->getEnv(),
d_smtEngine->getResourceManager()));
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback