summaryrefslogtreecommitdiff
path: root/src/theory/booleans
diff options
context:
space:
mode:
authorDejan Jovanović <dejan.jovanovic@gmail.com>2012-02-25 22:35:53 +0000
committerDejan Jovanović <dejan.jovanovic@gmail.com>2012-02-25 22:35:53 +0000
commit8dae2b1d76de678be272df097259901463bdccbb (patch)
treed486fbe2534e3f6875dbd27b961d684593943c69 /src/theory/booleans
parent7aa55e0d38e73a02b11ad0c5a60196b610674050 (diff)
ppAsert -> ppAssert
Diffstat (limited to 'src/theory/booleans')
-rw-r--r--src/theory/booleans/theory_bool.cpp2
-rw-r--r--src/theory/booleans/theory_bool.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/theory/booleans/theory_bool.cpp b/src/theory/booleans/theory_bool.cpp
index 3b3cde33d..520adc228 100644
--- a/src/theory/booleans/theory_bool.cpp
+++ b/src/theory/booleans/theory_bool.cpp
@@ -134,7 +134,7 @@ Node TheoryBool::getValue(TNode n) {
}
}
-Theory::PPAssertStatus TheoryBool::ppAsert(TNode in, SubstitutionMap& outSubstitutions) {
+Theory::PPAssertStatus TheoryBool::ppAssert(TNode in, SubstitutionMap& outSubstitutions) {
if (in.getKind() == kind::CONST_BOOLEAN && !in.getConst<bool>()) {
// If we get a false literal, we're in conflict
diff --git a/src/theory/booleans/theory_bool.h b/src/theory/booleans/theory_bool.h
index dd15436d8..fedc47aeb 100644
--- a/src/theory/booleans/theory_bool.h
+++ b/src/theory/booleans/theory_bool.h
@@ -36,7 +36,7 @@ public:
Node getValue(TNode n);
- PPAssertStatus ppAsert(TNode in, SubstitutionMap& outSubstitutions);
+ PPAssertStatus ppAssert(TNode in, SubstitutionMap& outSubstitutions);
std::string identify() const { return std::string("TheoryBool"); }
};/* class TheoryBool */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback