mirror of
https://github.com/Z3Prover/z3
synced 2025-04-27 19:05:51 +00:00
removing address dependencies
This commit is contained in:
parent
eee2d7af94
commit
ebc8a43fe3
10 changed files with 100 additions and 7 deletions
|
@ -146,7 +146,14 @@ class iz3base : public iz3mgr, public scopes {
|
|||
ranges(){scope_computed = false;}
|
||||
};
|
||||
|
||||
stl_ext::hash_map<symb,range> sym_range_hash;
|
||||
// We only use this for sym_range_hash, which has no range destructor
|
||||
struct symb_hash {
|
||||
size_t operator()(const symb &s) const {
|
||||
return (size_t) s;
|
||||
}
|
||||
};
|
||||
|
||||
stl_ext::hash_map<symb,range,symb_hash> sym_range_hash;
|
||||
stl_ext::hash_map<ast,ranges> ast_ranges_hash;
|
||||
stl_ext::hash_map<ast,ast> simplify_memo;
|
||||
stl_ext::hash_map<ast,int> frame_map; // map assertions to frames
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue