mirror of
https://github.com/Z3Prover/z3
synced 2025-05-02 13:27:01 +00:00
Use = default
for virtual constructors.
This commit is contained in:
parent
aa0719abae
commit
5014b1a34d
85 changed files with 106 additions and 107 deletions
|
@ -59,7 +59,7 @@ namespace mbp {
|
|||
|
||||
public:
|
||||
project_plugin(ast_manager& m) :m(m), m_cache(m), m_args(m), m_pure_eqs(m) {}
|
||||
virtual ~project_plugin() {}
|
||||
virtual ~project_plugin() = default;
|
||||
virtual bool operator()(model& model, app* var, app_ref_vector& vars, expr_ref_vector& lits) { return false; }
|
||||
/**
|
||||
\brief partial solver.
|
||||
|
|
|
@ -36,7 +36,7 @@ namespace mbp {
|
|||
bool is_variable(expr* e) const { return m_is_var(e); }
|
||||
public:
|
||||
solve_plugin(ast_manager& m, family_id fid, is_variable_proc& is_var) : m(m), m_id(fid), m_is_var(is_var) {}
|
||||
virtual ~solve_plugin() {}
|
||||
virtual ~solve_plugin() = default;
|
||||
family_id get_family_id() const { return m_id; }
|
||||
/// Process (and potentially augment) a literal
|
||||
expr_ref operator() (expr *lit);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue