3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

fix build

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-04-30 17:52:00 -07:00
parent aa1a596394
commit 1ef4354080

View file

@ -2981,7 +2981,9 @@ namespace nlsat {
m_display_var(verbose_stream(), x);
display(verbose_stream() << " ", *c) << "\n";
bound_constraint l(x, A, B, false, c);
bound_constraint h(x, -A, -B, false, c);
A = -A;
B = -B;
bound_constraint h(x, A, B, false, c);
apply_fm_equality(x, clauses, l, h);
return true;
}