3
0
Fork 0
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:
Nikolaj Bjorner 2020-02-25 12:40:10 -08:00
parent 963f8240c2
commit 39061d7388
3 changed files with 17 additions and 14 deletions

View file

@ -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 {