GCC Code Coverage Report
Directory: . Exec Total Coverage
File: src/theory/quantifiers/sygus/sygus_module.cpp Lines: 5 5 100.0 %
Date: 2021-09-07 Branches: 2 4 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
 * 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
4764
SygusModule::SygusModule(QuantifiersState& qs,
25
                         QuantifiersInferenceManager& qim,
26
                         TermDbSygus* tds,
27
4764
                         SynthConjecture* p)
28
4764
    : EnvObj(qs.getEnv()), d_qstate(qs), d_qim(qim), d_tds(tds), d_parent(p)
29
{
30
4764
}
31
32
}  // namespace quantifiers
33
}  // namespace theory
34
29502
}  // namespace cvc5