summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/arith/nonlinear_extension.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/theory/arith/nonlinear_extension.cpp b/src/theory/arith/nonlinear_extension.cpp
index e8b1b3b93..46be960c7 100644
--- a/src/theory/arith/nonlinear_extension.cpp
+++ b/src/theory/arith/nonlinear_extension.cpp
@@ -3042,21 +3042,22 @@ bool NonlinearExtension::checkTfTangentPlanesFun(Node tf,
NodeManager* nm = NodeManager::currentNM();
Kind k = tf.getKind();
+
+ // Figure 3 : c
+ Node c = d_model.computeAbstractModelValue(tf[0]);
+ int csign = c.getConst<Rational>().sgn();
+ Assert(csign == 1 || csign == -1);
+
// Figure 3: P_l, P_u
// mapped to for signs of c
std::map<int, Node> poly_approx_bounds[2];
std::vector<Node> pbounds;
- getPolynomialApproximationBounds(k, d, pbounds);
+ getPolynomialApproximationBoundForArg(k, c, d, pbounds);
poly_approx_bounds[0][1] = pbounds[0];
poly_approx_bounds[0][-1] = pbounds[1];
poly_approx_bounds[1][1] = pbounds[2];
poly_approx_bounds[1][-1] = pbounds[3];
- // Figure 3 : c
- Node c = d_model.computeAbstractModelValue(tf[0]);
- int csign = c.getConst<Rational>().sgn();
- Assert(csign == 1 || csign == -1);
-
// Figure 3 : v
Node v = d_model.computeAbstractModelValue(tf);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback