3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-04 18:30:24 +00:00

add experiment with quot-rem encoding

experiment seeks to determine whether quot-rem encoding can substitute the division circuit encoding.
A first test suggests it makes no difference.
This commit is contained in:
Nikolaj Bjorner 2022-10-21 09:25:45 -07:00
parent 31914d8ecf
commit ad5fa9433f
2 changed files with 8 additions and 4 deletions

View file

@ -332,8 +332,8 @@ bool asserted_formulas::invoke(simplify_fmls& s) {
IF_VERBOSE(10000, verbose_stream() << "total size: " << get_total_size() << "\n";);
TRACE("reduce_step_ll", ast_mark visited; display_ll(tout, visited););
CASSERT("well_sorted",check_well_sorted());
TRACE("after_reduce", display(tout << s.id() << "\n"););
if (inconsistent() || canceled()) {
TRACE("after_reduce", display(tout););
TRACE("after_reduce_ll", ast_mark visited; display_ll(tout, visited););
return false;
}