summaryrefslogtreecommitdiff
path: root/src/theory/theory.h
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/theory.h
parent7aa55e0d38e73a02b11ad0c5a60196b610674050 (diff)
ppAsert -> ppAssert
Diffstat (limited to 'src/theory/theory.h')
-rw-r--r--src/theory/theory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/theory/theory.h b/src/theory/theory.h
index a67d3b7af..b0f5e4e53 100644
--- a/src/theory/theory.h
+++ b/src/theory/theory.h
@@ -478,7 +478,7 @@ public:
* Given a literal, add the solved substitutions to the map, if any.
* The method should return true if the literal can be safely removed.
*/
- virtual PPAssertStatus ppAsert(TNode in, SubstitutionMap& outSubstitutions) {
+ virtual PPAssertStatus ppAssert(TNode in, SubstitutionMap& outSubstitutions) {
if (in.getKind() == kind::EQUAL) {
if (in[0].getMetaKind() == kind::metakind::VARIABLE && !in[1].hasSubterm(in[0])) {
outSubstitutions.addSubstitution(in[0], in[1]);
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback