mirror of
https://github.com/Z3Prover/z3
synced 2025-08-23 03:27:52 +00:00
disable unsound simplify, rename stats, delay region allocation for cutsets
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
963f8240c2
commit
39061d7388
3 changed files with 17 additions and 14 deletions
|
@ -92,7 +92,7 @@ namespace sat {
|
|||
|
||||
struct hash {
|
||||
unsigned operator()(bin_rel const& p) const {
|
||||
return mk_mix(p.u, p.v, 1);
|
||||
return p.u + 65599*p.v; // Weinberger's should be a bit cheaper mk_mix(p.u, p.v, 1);
|
||||
}
|
||||
};
|
||||
struct eq {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue