Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * Top contributors (to current version): 3 : : * Andrew Reynolds, Andres Noetzli 4 : : * 5 : : * This file is part of the cvc5 project. 6 : : * 7 : : * Copyright (c) 2009-2024 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::internal { 21 : : namespace theory { 22 : : namespace quantifiers { 23 : : 24 : 29056 : SygusModule::SygusModule(Env& env, 25 : : QuantifiersState& qs, 26 : : QuantifiersInferenceManager& qim, 27 : : TermDbSygus* tds, 28 : 29056 : SynthConjecture* p) 29 : 29056 : : EnvObj(env), d_qstate(qs), d_qim(qim), d_tds(tds), d_parent(p) 30 : : { 31 : 29056 : } 32 : : 33 : : } // namespace quantifiers 34 : : } // namespace theory 35 : : } // namespace cvc5::internal