mirror of
https://github.com/Z3Prover/z3
synced 2025-11-05 13:56:03 +00:00
improve perf
This commit is contained in:
parent
b858070387
commit
6fe095c40c
2 changed files with 3 additions and 5 deletions
|
|
@ -6,7 +6,7 @@
|
|||
#include <random>
|
||||
|
||||
struct int_hash {
|
||||
unsigned operator()(int k) const { return static_cast<unsigned>(k); }
|
||||
unsigned operator()(int k) const { return static_cast<unsigned>(k) * 2654435761U; }
|
||||
};
|
||||
|
||||
struct int_eq {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue