3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-09-03 08:38:06 +00:00

use native sdiv

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-01-03 10:56:15 -08:00
parent bfcd75595e
commit 5a57636cd8
5 changed files with 69 additions and 7 deletions

View file

@ -587,8 +587,16 @@ namespace sls {
#endif
#if 1
if (allow_costly_flips(mt))
if (allow_costly_flips(mt))
ctx.flip(v);
else if (false) {
sat::bool_var_set rotated;
unsigned budget = 100;
bool rot = ctx.try_rotate(v, rotated, budget);
(void)rot;
TRACE("bv", tout << "rotate " << v << " " << rot << " " << rotated << "\n";);
verbose_stream() << "rotate " << v << " " << rot << " " << rotated << "\n";
}
#endif
}