mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +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
|
@ -39,7 +39,7 @@ namespace euf {
|
|||
virtual bool post_visit(expr* e, bool sign, bool root) { return false; }
|
||||
|
||||
public:
|
||||
virtual ~th_internalizer() {}
|
||||
virtual ~th_internalizer() = default;
|
||||
|
||||
virtual sat::literal internalize(expr* e, bool sign, bool root, bool redundant) = 0;
|
||||
|
||||
|
@ -60,7 +60,7 @@ namespace euf {
|
|||
|
||||
class th_decompile {
|
||||
public:
|
||||
virtual ~th_decompile() {}
|
||||
virtual ~th_decompile() = default;
|
||||
|
||||
virtual bool to_formulas(std::function<expr_ref(sat::literal)>& lit2expr, expr_ref_vector& fmls) { return false; }
|
||||
};
|
||||
|
@ -68,7 +68,7 @@ namespace euf {
|
|||
class th_model_builder {
|
||||
public:
|
||||
|
||||
virtual ~th_model_builder() {}
|
||||
virtual ~th_model_builder() = default;
|
||||
|
||||
/**
|
||||
\brief compute the value for enode \c n and store the value in \c values
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue