mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 09:20:22 +00:00
fixed build errors and warnings
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
71042bbf6d
commit
95300e801d
5 changed files with 9 additions and 20 deletions
|
@ -19,7 +19,6 @@ Author:
|
|||
fpa_simplifier_plugin::fpa_simplifier_plugin(ast_manager & m, basic_simplifier_plugin & b) :
|
||||
simplifier_plugin(symbol("fpa"), m),
|
||||
m_util(m),
|
||||
m_bsimp(b),
|
||||
m_rw(m) {}
|
||||
|
||||
fpa_simplifier_plugin::~fpa_simplifier_plugin() {}
|
||||
|
@ -28,9 +27,6 @@ bool fpa_simplifier_plugin::reduce(func_decl * f, unsigned num_args, expr * cons
|
|||
set_reduce_invoked();
|
||||
|
||||
SASSERT(f->get_family_id() == get_family_id());
|
||||
/*switch (f->get_decl_kind()) {
|
||||
case OP_FPA_FP: break;
|
||||
}*/
|
||||
|
||||
return m_rw.mk_app_core(f, num_args, args, result) == BR_DONE;
|
||||
}
|
||||
|
|
|
@ -23,7 +23,6 @@ Author:
|
|||
|
||||
class fpa_simplifier_plugin : public simplifier_plugin {
|
||||
fpa_util m_util;
|
||||
basic_simplifier_plugin & m_bsimp;
|
||||
fpa_rewriter m_rw;
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue