summaryrefslogtreecommitdiff
path: root/src/theory/assertion.cpp
diff options
context:
space:
mode:
authorTim King <taking@google.com>2017-03-27 09:40:30 -0700
committerTim King <taking@google.com>2017-03-27 09:40:30 -0700
commit7b89724488085d7eed3e37520ca11d8cd1e18120 (patch)
tree0d04fdd6a44fb2b32dac3971fb8cee68a291fd08 /src/theory/assertion.cpp
parent0be62eeea95eaf27913e792c17dd79afb96b16cb (diff)
Moving the theory::Assertion struct into its own file.
Diffstat (limited to 'src/theory/assertion.cpp')
-rw-r--r--src/theory/assertion.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/theory/assertion.cpp b/src/theory/assertion.cpp
new file mode 100644
index 000000000..99ddbc6e9
--- /dev/null
+++ b/src/theory/assertion.cpp
@@ -0,0 +1,27 @@
+/********************* */
+/*! \file assertion.cpp
+ ** \verbatim
+ ** Top contributors (to current version):
+ ** Tim King
+ ** This file is part of the CVC4 project.
+ ** Copyright (c) 2009-2016 by the authors listed in the file AUTHORS
+ ** in the top-level source directory) and their institutional affiliations.
+ ** All rights reserved. See the file COPYING in the top-level source
+ ** directory for licensing information.\endverbatim
+ **
+ ** \brief Theory assertions.
+ **
+ ** Theory assertions.
+ **/
+
+#include "theory/assertion.h"
+
+namespace CVC4 {
+namespace theory {
+
+std::ostream& operator<<(std::ostream& out, const Assertion& a) {
+ return out << a.assertion;
+}
+
+}/* CVC4::theory namespace */
+}/* CVC4 namespace */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback