summaryrefslogtreecommitdiff
path: root/src/theory
diff options
context:
space:
mode:
Diffstat (limited to 'src/theory')
-rw-r--r--src/theory/theory_engine.cpp5
-rw-r--r--src/theory/theory_engine.h1
2 files changed, 0 insertions, 6 deletions
diff --git a/src/theory/theory_engine.cpp b/src/theory/theory_engine.cpp
index 11da42e07..74b73d718 100644
--- a/src/theory/theory_engine.cpp
+++ b/src/theory/theory_engine.cpp
@@ -1992,11 +1992,6 @@ void TheoryEngine::staticInitializeBVOptions(
}
}
-bool TheoryEngine::ppBvAbstraction(const std::vector<Node>& assertions, std::vector<Node>& new_assertions) {
- bv::TheoryBV* bv_theory = (bv::TheoryBV*)d_theoryTable[THEORY_BV];
- return bv_theory->applyAbstraction(assertions, new_assertions);
-}
-
void TheoryEngine::mkAckermanizationAssertions(std::vector<Node>& assertions) {
bv::TheoryBV* bv_theory = (bv::TheoryBV*)d_theoryTable[THEORY_BV];
bv_theory->mkAckermanizationAssertions(assertions);
diff --git a/src/theory/theory_engine.h b/src/theory/theory_engine.h
index 80853bb6f..3ae0a9ea9 100644
--- a/src/theory/theory_engine.h
+++ b/src/theory/theory_engine.h
@@ -852,7 +852,6 @@ private:
/** For preprocessing pass lifting bit-vectors of size 1 to booleans */
public:
void staticInitializeBVOptions(const std::vector<Node>& assertions);
- bool ppBvAbstraction(const std::vector<Node>& assertions, std::vector<Node>& new_assertions);
void mkAckermanizationAssertions(std::vector<Node>& assertions);
Node ppSimpITE(TNode assertion);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback