mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
55 lines
1.3 KiB
C++
55 lines
1.3 KiB
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
simplify_tactic.h
|
|
|
|
Abstract:
|
|
|
|
Apply simplification and rewriting rules.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-11-20
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _SIMPLIFY_TACTIC_H_
|
|
#define _SIMPLIFY_TACTIC_H_
|
|
|
|
#include"tactic.h"
|
|
#include"tactical.h"
|
|
|
|
class simplify_tactic : public tactic {
|
|
struct imp;
|
|
imp * m_imp;
|
|
params_ref m_params;
|
|
public:
|
|
simplify_tactic(ast_manager & m, params_ref const & ref = params_ref());
|
|
virtual ~simplify_tactic();
|
|
|
|
virtual void updt_params(params_ref const & p);
|
|
static void get_param_descrs(param_descrs & r);
|
|
virtual void collect_param_descrs(param_descrs & r) { get_param_descrs(r); }
|
|
|
|
virtual void operator()(goal_ref const & in,
|
|
goal_ref_buffer & result,
|
|
model_converter_ref & mc,
|
|
proof_converter_ref & pc,
|
|
expr_dependency_ref & core);
|
|
|
|
virtual void cleanup();
|
|
|
|
unsigned get_num_steps() const;
|
|
virtual void set_cancel(bool f);
|
|
|
|
virtual tactic * translate(ast_manager & m) { return alloc(simplify_tactic, m, m_params); }
|
|
};
|
|
|
|
tactic * mk_simplify_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
tactic * mk_elim_and_tactic(ast_manager & m, params_ref const & p = params_ref());
|
|
|
|
#endif
|