GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/quantifiers/master_eq_notify.cpp Lines: 5 5 100.0 %
Date: 2021-08-14 Branches: 3 6 50.0 %

Line Exec Source
1
/******************************************************************************
2
 * Top contributors (to current version):
3
 *   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
 * Notification class for the master equality engine
14
 */
15
16
#include "theory/quantifiers/master_eq_notify.h"
17
18
#include "theory/quantifiers_engine.h"
19
20
namespace cvc5 {
21
namespace theory {
22
namespace quantifiers {
23
24
6763
MasterNotifyClass::MasterNotifyClass(QuantifiersEngine* qe) : d_quantEngine(qe) {}
25
26
872354
void MasterNotifyClass::eqNotifyNewClass(TNode t)
27
{
28
872354
  d_quantEngine->eqNotifyNewClass(t);
29
872354
}
30
31
32
}  // namespace quantifiers
33
}  // namespace theory
34
29340
}  // namespace cvc5