Branch data Line data Source code
1 : : /****************************************************************************** 2 : : * This file is part of the cvc5 project. 3 : : * 4 : : * Copyright (c) 2009-2026 by the authors listed in the file AUTHORS 5 : : * in the top-level source directory and their institutional affiliations. 6 : : * All rights reserved. See the file COPYING in the top-level source 7 : : * directory for licensing information. 8 : : * **************************************************************************** 9 : : * 10 : : * Implementation of sygus_module. 11 : : */ 12 : : 13 : : #include "theory/quantifiers/sygus/sygus_module.h" 14 : : 15 : : #include "theory/quantifiers/quantifiers_state.h" 16 : : 17 : : namespace cvc5::internal { 18 : : namespace theory { 19 : : namespace quantifiers { 20 : : 21 : 24928 : SygusModule::SygusModule(Env& env, 22 : : QuantifiersState& qs, 23 : : QuantifiersInferenceManager& qim, 24 : : TermDbSygus* tds, 25 : 24928 : SynthConjecture* p) 26 : 24928 : : EnvObj(env), d_qstate(qs), d_qim(qim), d_tds(tds), d_parent(p) 27 : : { 28 : 24928 : } 29 : : 30 : : } // namespace quantifiers 31 : : } // namespace theory 32 : : } // namespace cvc5::internal