Introduce quantifiers inference manager (#5821)
[cvc5.git] / src / theory / assertion.cpp
1 /********************* */
2 /*! \file assertion.cpp
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Tim King, Andrew Reynolds
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2020 by the authors listed in the file AUTHORS
8 ** in the top-level source directory and their institutional affiliations.
9 ** All rights reserved. See the file COPYING in the top-level source
10 ** directory for licensing information.\endverbatim
11 **
12 ** \brief Theory assertions.
13 **
14 ** Theory assertions.
15 **/
16
17 #include "theory/assertion.h"
18
19 namespace CVC4 {
20 namespace theory {
21
22 std::ostream& operator<<(std::ostream& out, const Assertion& a) {
23 return out << a.d_assertion;
24 }
25
26 }/* CVC4::theory namespace */
27 }/* CVC4 namespace */