mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
Merge branch 'master' of https://github.com/z3prover/z3
This commit is contained in:
commit
8d0d6d8f04
17 changed files with 25 additions and 22 deletions
|
@ -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());
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue