mirror of
https://github.com/Z3Prover/z3
synced 2026-02-20 15:34:41 +00:00
remove some uneeded constructors
This commit is contained in:
parent
fb5bbb8074
commit
97c70ba501
5 changed files with 8 additions and 14 deletions
|
|
@ -98,10 +98,9 @@ namespace smt {
|
|||
|
||||
class theory_array_bapa::imp {
|
||||
struct sz_info {
|
||||
bool m_is_leaf; // has it been split into disjoint subsets already?
|
||||
rational m_size; // set to >= integer if fixed in final check, otherwise -1
|
||||
bool m_is_leaf = true; // has it been split into disjoint subsets already?
|
||||
rational m_size = rational::minus_one(); // set to >= integer if fixed in final check, otherwise -1
|
||||
obj_map<enode, expr*> m_selects;
|
||||
sz_info(): m_is_leaf(true), m_size(rational::minus_one()) {}
|
||||
};
|
||||
|
||||
typedef std::pair<func_decl*, func_decl*> func_decls;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue