mirror of
https://github.com/Z3Prover/z3
synced 2025-05-09 08:45:47 +00:00
build
This commit is contained in:
parent
b76ed6a47f
commit
ead2a46a88
4 changed files with 46 additions and 53 deletions
|
@ -115,11 +115,12 @@ bool demodulator_simplifier::rewrite1(func_decl* f, expr_ref_vector const& args,
|
|||
|
||||
SASSERT(lhs->get_decl() == f);
|
||||
|
||||
TRACE("demodulator", tout << "Matching with demodulator: " << mk_pp(lhs, m) << std::endl; );
|
||||
TRACE("demodulator", tout << "Matching with demodulator: " << mk_pp(lhs, m) << "\n");
|
||||
|
||||
if (m_match_subst(lhs, rhs, args.data(), np)) {
|
||||
TRACE("demodulator_bug", tout << "succeeded...\n" << mk_pp(rhs, m) << "\n===>\n" << np << "\n";);
|
||||
m_dependencies.insert(i);
|
||||
TRACE("demodulator_bug", tout << "succeeded...\n" << mk_pp(rhs, m) << "\n===>\n" << np << "\n");
|
||||
if (dep(i))
|
||||
m_dependencies.insert(i);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,7 +54,6 @@ class demodulator_simplifier : public dependent_expr_simplifier {
|
|||
|
||||
public:
|
||||
demodulator_simplifier(ast_manager& m, params_ref const& p, dependent_expr_state& st);
|
||||
void reduce() override;
|
||||
|
||||
|
||||
void reduce() override;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue