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 |
|
* Implementation of sygus_module. |
14 |
|
*/ |
15 |
|
|
16 |
|
#include "theory/quantifiers/sygus/sygus_module.h" |
17 |
|
|
18 |
|
namespace cvc5 { |
19 |
|
namespace theory { |
20 |
|
namespace quantifiers { |
21 |
|
|
22 |
6116 |
SygusModule::SygusModule(QuantifiersInferenceManager& qim, |
23 |
|
TermDbSygus* tds, |
24 |
6116 |
SynthConjecture* p) |
25 |
6116 |
: d_qim(qim), d_tds(tds), d_parent(p) |
26 |
|
{ |
27 |
6116 |
} |
28 |
|
|
29 |
|
} // namespace quantifiers |
30 |
|
} // namespace theory |
31 |
28191 |
} // namespace cvc5 |