3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-24 01:25:31 +00:00

disable tangent lemma, which appears to be counter-productive

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2022-12-11 12:56:21 -08:00
parent d092523733
commit 5a27ae6b53
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ namespace polysat {
return true;
if (try_y_l_ax_and_x_l_z(v, core, i))
return true;
if (try_tangent(v, core, i))
if (false && try_tangent(v, core, i))
return true;
return false;
}

View file

@ -707,7 +707,7 @@ namespace polysat {
n = n1;
}
verbose_stream() << e->interval << " " << e->side_cond << " " << e->src << ";\n";
// verbose_stream() << e->interval << " " << e->side_cond << " " << e->src << ";\n";
if (!e->interval.is_full()) {
auto const& hi = e->interval.hi();