mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 17:14:07 +00:00
increase starting size of ast's hash table to 512k entries (instead of 8) (#5040)
This commit is contained in:
parent
56478f917b
commit
4c9fed21e2
|
@ -966,6 +966,7 @@ class ast_translation;
|
|||
|
||||
class ast_table : public chashtable<ast*, obj_ptr_hash<ast>, ast_eq_proc> {
|
||||
public:
|
||||
ast_table() : chashtable({}, {}, 512 * 1024, 8 * 1024) {}
|
||||
void push_erase(ast * n);
|
||||
ast* pop_erase();
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue