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 |
|
#include "theory/quantifiers/quantifiers_state.h" |
19 |
|
|
20 |
|
namespace cvc5 { |
21 |
|
namespace theory { |
22 |
|
namespace quantifiers { |
23 |
|
|
24 |
4912 |
SygusModule::SygusModule(Env& env, |
25 |
|
QuantifiersState& qs, |
26 |
|
QuantifiersInferenceManager& qim, |
27 |
|
TermDbSygus* tds, |
28 |
4912 |
SynthConjecture* p) |
29 |
4912 |
: EnvObj(env), d_qstate(qs), d_qim(qim), d_tds(tds), d_parent(p) |
30 |
|
{ |
31 |
4912 |
} |
32 |
|
|
33 |
|
} // namespace quantifiers |
34 |
|
} // namespace theory |
35 |
29514 |
} // namespace cvc5 |