summaryrefslogtreecommitdiff
path: root/src/printer
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-05-18 20:20:58 +0000
committerTim King <taking@cs.nyu.edu>2012-05-18 20:20:58 +0000
commit3b93d45dab9513195d5604a069423ed13e173f49 (patch)
tree96497114c06755a14efe0d30c680703c9aa5380b /src/printer
parent76b8bdc51693af0867de94fe6002e8a8bec9e5f9 (diff)
This commit removes the dead psuedoboolean code.
Diffstat (limited to 'src/printer')
-rw-r--r--src/printer/cvc/cvc_printer.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/printer/cvc/cvc_printer.cpp b/src/printer/cvc/cvc_printer.cpp
index 1f147479d..1df59adc4 100644
--- a/src/printer/cvc/cvc_printer.cpp
+++ b/src/printer/cvc/cvc_printer.cpp
@@ -101,11 +101,6 @@ void CvcPrinter::toStream(std::ostream& out, TNode n, int depth, bool types, boo
}
break;
}
- case kind::CONST_PSEUDOBOOLEAN: {
- const Pseudoboolean& num = n.getConst<Pseudoboolean>();
- out << num;
- break;
- }
case kind::SUBRANGE_TYPE:
out << '[' << n.getConst<SubrangeBounds>() << ']';
break;
@@ -123,9 +118,6 @@ void CvcPrinter::toStream(std::ostream& out, TNode n, int depth, bool types, boo
case BOOLEAN_TYPE:
out << "BOOLEAN";
break;
- case PSEUDOBOOLEAN_TYPE:
- out << "PSEUDOBOOLEAN";
- break;
case KIND_TYPE:
out << "TYPE";
break;
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback