mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
merge
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
commit
abc274e290
4 changed files with 276 additions and 220 deletions
|
@ -620,7 +620,7 @@ public:
|
|||
core_hashtable& operator=(core_hashtable const& other) {
|
||||
if (this == &other) return *this;
|
||||
reset();
|
||||
for (const data& d : e) {
|
||||
for (const data& d : other) {
|
||||
insert(d);
|
||||
}
|
||||
return *this;
|
||||
|
|
|
@ -174,9 +174,6 @@ public:
|
|||
|
||||
value & find(key * k) {
|
||||
obj_map_entry * e = find_core(k);
|
||||
if (!e) {
|
||||
e = insert_if_not_there2(k, value());
|
||||
}
|
||||
SASSERT(e);
|
||||
return e->get_data().m_value;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue