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:
parent
d092523733
commit
5a27ae6b53
2 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue