3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-02 13:27:01 +00:00
This commit is contained in:
Nikolaj Bjorner 2022-10-22 11:18:16 -07:00
parent 7eee7914bd
commit e3a44254c9
3 changed files with 78 additions and 7 deletions

View file

@ -407,9 +407,9 @@ namespace mbp {
TRACE("qe",
for (auto const& [v, t] : result)
tout << v << " := " << t << "\n";
for (auto* f : fmls)
tout << mk_pp(f, m) << " := " << eval(f) << "\n";
tout << "fmls:" << fmls << "\n";);
for (auto* f : fmls)
tout << mk_pp(f, m) << " := " << eval(f) << "\n";
tout << "fmls:" << fmls << "\n";);
return true;
}