summaryrefslogtreecommitdiff
path: root/src/theory/arith/nl/transcendental/transcendental_solver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory/arith/nl/transcendental/transcendental_solver.cpp')
-rw-r--r--src/theory/arith/nl/transcendental/transcendental_solver.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theory/arith/nl/transcendental/transcendental_solver.cpp b/src/theory/arith/nl/transcendental/transcendental_solver.cpp
index 9e204f582..25a5a511f 100644
--- a/src/theory/arith/nl/transcendental/transcendental_solver.cpp
+++ b/src/theory/arith/nl/transcendental/transcendental_solver.cpp
@@ -41,11 +41,11 @@ TranscendentalSolver::TranscendentalSolver(Env& env,
InferenceManager& im,
NlModel& m)
: EnvObj(env),
- d_tstate(im, m, env),
+ d_tstate(env, im, m),
d_expSlv(env, &d_tstate),
d_sineSlv(env, &d_tstate)
{
- d_taylor_degree = d_tstate.d_env.getOptions().arith.nlExtTfTaylorDegree;
+ d_taylor_degree = options().arith.nlExtTfTaylorDegree;
}
TranscendentalSolver::~TranscendentalSolver() {}
@@ -187,7 +187,7 @@ void TranscendentalSolver::processSideEffect(const NlLemma& se)
auto it = secant_points.find(d);
if (it == secant_points.end())
{
- it = secant_points.emplace(d, d_tstate.d_env.getUserContext()).first;
+ it = secant_points.emplace(d, userContext()).first;
}
it->second.push_back(c);
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback