3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00
This commit is contained in:
Nikolaj Bjorner 2020-11-11 17:37:00 -08:00
parent aced115b70
commit 7e68d546ba
4 changed files with 11 additions and 10 deletions

View file

@ -149,6 +149,8 @@ namespace euf {
}
bool solver::is_external(bool_var v) {
if (s().is_external(v))
return true;
if (nullptr != m_bool_var2expr.get(v, nullptr))
return true;
for (auto* s : m_solvers)