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 |
6766 |
MasterNotifyClass::MasterNotifyClass(QuantifiersEngine* qe) : d_quantEngine(qe) {} |
25 |
|
|
26 |
871749 |
void MasterNotifyClass::eqNotifyNewClass(TNode t) |
27 |
|
{ |
28 |
871749 |
d_quantEngine->eqNotifyNewClass(t); |
29 |
871749 |
} |
30 |
|
|
31 |
|
|
32 |
|
} // namespace quantifiers |
33 |
|
} // namespace theory |
34 |
29349 |
} // namespace cvc5 |