mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
only use setup_and_check if there is no user propagator set.
This commit is contained in:
parent
1618c970df
commit
68b072e7f1
|
@ -200,7 +200,7 @@ public:
|
|||
|
||||
lbool r;
|
||||
try {
|
||||
if (assumptions.empty())
|
||||
if (assumptions.empty() && !m_user_ctx)
|
||||
r = m_ctx->setup_and_check();
|
||||
else
|
||||
r = m_ctx->check(assumptions.size(), assumptions.data());
|
||||
|
|
Loading…
Reference in a new issue