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:
parent
bfcd75595e
commit
5a57636cd8
5 changed files with 69 additions and 7 deletions
|
@ -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
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue