3
0
Fork 0
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:
Nuno Lopes 2024-12-22 15:06:58 +00:00
parent fb5bbb8074
commit 97c70ba501
5 changed files with 8 additions and 14 deletions

View file

@ -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;