summaryrefslogtreecommitdiff
path: root/src/util/emptyset.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/emptyset.cpp')
-rw-r--r--src/util/emptyset.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/util/emptyset.cpp b/src/util/emptyset.cpp
new file mode 100644
index 000000000..fa1bb8f10
--- /dev/null
+++ b/src/util/emptyset.cpp
@@ -0,0 +1,12 @@
+#include "util/emptyset.h"
+#include <iostream>
+
+using namespace std;
+
+namespace CVC4 {
+
+std::ostream& operator<<(std::ostream& out, const EmptySet& asa) {
+ return out << "emptyset(" << asa.getType() << ')';
+}
+
+}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback