summaryrefslogtreecommitdiff
path: root/src/theory/arith/branch_and_bound.cpp
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2021-09-09 19:48:18 -0700
committerGitHub <noreply@github.com>2021-09-09 19:48:18 -0700
commit25597467c8df64c36e8353bfcf9d99d02fdd798b (patch)
tree9be8240f0ce11022100072bb6fb46c61ff448420 /src/theory/arith/branch_and_bound.cpp
parent5fbc99c94d65b7e3fc0212e9f1e49ae8907643fe (diff)
parent5369982ff5c493f72e6f8309d8be632866314805 (diff)
Merge branch 'master' into stdAttrsstdAttrs
Diffstat (limited to 'src/theory/arith/branch_and_bound.cpp')
-rw-r--r--src/theory/arith/branch_and_bound.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/theory/arith/branch_and_bound.cpp b/src/theory/arith/branch_and_bound.cpp
index ca1a2fa6f..31017dea6 100644
--- a/src/theory/arith/branch_and_bound.cpp
+++ b/src/theory/arith/branch_and_bound.cpp
@@ -28,14 +28,16 @@ namespace cvc5 {
namespace theory {
namespace arith {
-BranchAndBound::BranchAndBound(ArithState& s,
+BranchAndBound::BranchAndBound(Env& env,
+ ArithState& s,
InferenceManager& im,
PreprocessRewriteEq& ppre,
ProofNodeManager* pnm)
- : d_astate(s),
+ : EnvObj(env),
+ d_astate(s),
d_im(im),
d_ppre(ppre),
- d_pfGen(new EagerProofGenerator(pnm, s.getUserContext())),
+ d_pfGen(new EagerProofGenerator(pnm, userContext())),
d_pnm(pnm)
{
}
@@ -45,7 +47,7 @@ TrustNode BranchAndBound::branchIntegerVariable(TNode var, Rational value)
TrustNode lem = TrustNode::null();
NodeManager* nm = NodeManager::currentNM();
Integer floor = value.floor();
- if (d_astate.options().arith.brabTest)
+ if (options().arith.brabTest)
{
Trace("integers") << "branch-round-and-bound enabled" << std::endl;
Integer ceil = value.ceiling();
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback