GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/assertion.cpp Lines: 1 3 33.3 %
Date: 2021-05-22 Branches: 2 6 33.3 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   Tim King, Andrew Reynolds
4
 *
5
 * This file is part of the cvc5 project.
6
 *
7
 * Copyright (c) 2009-2021 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.
11
 * ****************************************************************************
12
 *
13
 * Theory assertions.
14
 */
15
16
#include "theory/assertion.h"
17
18
namespace cvc5 {
19
namespace theory {
20
21
std::ostream& operator<<(std::ostream& out, const Assertion& a) {
22
  return out << a.d_assertion;
23
}
24
25
}  // namespace theory
26
28191
}  // namespace cvc5