summaryrefslogtreecommitdiff
path: root/src/theory/bv
diff options
context:
space:
mode:
authorTim King <taking@google.com>2017-03-27 22:15:23 -0700
committerTim King <taking@google.com>2017-03-27 22:15:23 -0700
commit10a9f52fcb1aedd662c87a394a3df76a4d66b5c9 (patch)
treef1c1a3689daa8367cbca1223d9b441e3913534c4 /src/theory/bv
parent0a0600ef6705f9d4265057fef307bc49f54bfa35 (diff)
Minor cleanups to ExtTheory.
Diffstat (limited to 'src/theory/bv')
-rw-r--r--src/theory/bv/theory_bv.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/theory/bv/theory_bv.cpp b/src/theory/bv/theory_bv.cpp
index ca7c037ef..651d44841 100644
--- a/src/theory/bv/theory_bv.cpp
+++ b/src/theory/bv/theory_bv.cpp
@@ -396,10 +396,9 @@ void TheoryBV::check(Effort e)
}
//last call : do reductions on extended bitvector functions
- if( e==Theory::EFFORT_LAST_CALL ){
- std::vector< Node > nred;
- getExtTheory()->getActive( nred );
- doExtfReductions( nred );
+ if (e == Theory::EFFORT_LAST_CALL) {
+ std::vector<Node> nred = getExtTheory()->getActive();
+ doExtfReductions(nred);
return;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback