3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 09:35:32 +00:00
This commit is contained in:
Nikolaj Bjorner 2023-01-04 11:56:38 -08:00
commit 8d0d6d8f04
17 changed files with 25 additions and 22 deletions

View file

@ -73,10 +73,10 @@ public:
for (unsigned i = 0; i < sz; i++)
for_each_expr(cp, visited, g->form(i));
std::cout << "(" << std::endl;
std::cout << "(\n";
for (auto const& kv : m_stats)
std::cout << " :" << kv.first << " " << kv.second << std::endl;
std::cout << ")" << std::endl;
std::cout << " :" << kv.first << " " << kv.second << '\n';
std::cout << ")\n";
g->inc_depth();
result.push_back(g.get());

View file

@ -23,7 +23,7 @@ Author:
tactic * mk_smt_tactic(ast_manager & m, params_ref const & p) {
sat_params sp(p);
if (sp.smt())
if (sp.smt())
return mk_solver2tactic(mk_smt2_solver(m, p));
if (sp.euf())
return mk_sat_tactic(m, p);