aGrUM 3.1.1
a C++ library for (probabilistic) graphical models
multiDimPartialInstantiation_tpl.h
Go to the documentation of this file.
1/****************************************************************************
2 * This file is part of the aGrUM/pyAgrum library. *
3 * *
4 * Copyright (c) 2005-2026 by *
5 * - Pierre-Henri WUILLEMIN(_at_LIP6) *
6 * - Christophe GONZALES(_at_AMU) *
7 * *
8 * The aGrUM/pyAgrum library is free software; you can redistribute it *
9 * and/or modify it under the terms of either : *
10 * *
11 * - the GNU Lesser General Public License as published by *
12 * the Free Software Foundation, either version 3 of the License, *
13 * or (at your option) any later version, *
14 * - the MIT license (MIT), *
15 * - or both in dual license, as here. *
16 * *
17 * (see https://agrum.gitlab.io/articles/dual-licenses-lgplv3mit.html) *
18 * *
19 * This aGrUM/pyAgrum library is distributed in the hope that it will be *
20 * useful, but WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
21 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES MERCHANTABILITY or FITNESS *
22 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
23 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
24 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, *
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR *
26 * OTHER DEALINGS IN THE SOFTWARE. *
27 * *
28 * See LICENCES for more details. *
29 * *
30 * SPDX-FileCopyrightText: Copyright 2005-2026 *
31 * - Pierre-Henri WUILLEMIN(_at_LIP6) *
32 * - Christophe GONZALES(_at_AMU) *
33 * SPDX-License-Identifier: LGPL-3.0-or-later OR MIT *
34 * *
35 * Contact : info_at_agrum_dot_org *
36 * homepage : http://agrum.gitlab.io *
37 * gitlab : https://gitlab.com/agrumery/agrum *
38 * *
39 ****************************************************************************/
40
41#pragma once
42
43
50#include <typeinfo>
51
52#include <agrum/agrum.h>
53
55
56#ifndef DOXYGEN_SHOULD_SKIP_THIS
57
58namespace gum {
59
60 // constructor
61 template < typename GUM_ELEMENT, template < typename > class TABLE >
63 // for debugging purposes
64 GUM_CONSTRUCTOR(MultiDimPartialInstantiation);
65 }
66
67 // copy constructor
68 template < typename GUM_ELEMENT, template < typename > class TABLE >
71 // for debugging purposes
72 GUM_CONS_CPY(MultiDimPartialInstantiation);
73 }
74
75 // destructor
76 template < typename GUM_ELEMENT, template < typename > class TABLE >
78 // for debugging purposes
79 GUM_DESTRUCTOR(MultiDimPartialInstantiation);
80 }
81
82 // virtual constructor
83 template < typename GUM_ELEMENT, template < typename > class TABLE >
87 }
88
89 // copy operator
90 template < typename GUM_ELEMENT, template < typename > class TABLE >
94
95 // creates and returns the partial instantiation of the table
96 template < typename GUM_ELEMENT, template < typename > class TABLE >
98 const TABLE< GUM_ELEMENT >& table,
101 return new TABLE< GUM_ELEMENT >(new_impl);
102 }
103
104 // creates and returns the partial instantiation of the table
105 template < typename GUM_ELEMENT, template < typename > class TABLE >
107 TABLE< GUM_ELEMENT >& container,
108 const TABLE< GUM_ELEMENT >& table,
111 container = *new_impl;
112 delete new_impl;
113 }
114
115} /* namespace gum */
116
117#endif /* DOXYGEN_SHOULD_SKIP_THIS */
The class for generic Hash Tables.
Definition hashTable.h:640
<agrum/base/multidim/multiDimImplementation.h>
A generic class to instantiate a subset of variables of a multidimensional table.
virtual ~MultiDimPartialInstantiation()
Class destructor.
virtual MultiDimPartialInstantiation< GUM_ELEMENT, TABLE > * newFactory() const
MultiDimPartialInstantiation< GUM_ELEMENT, TABLE > & operator=(const MultiDimPartialInstantiation< GUM_ELEMENT, TABLE > &src)
Copy operator.
TABLE< GUM_ELEMENT > * instantiate(const TABLE< GUM_ELEMENT > &table, const HashTable< const DiscreteVariable *, Idx > &inst_vars)
Creates and returns the partial instantiation of the table over a subset of its variables.
MultiDimPartialInstantiation()
Default constructor.
Headers of MultiDimPartialInstantiation.
gum is the global namespace for all aGrUM entities
Definition agrum.h:46
MultiDimImplementation< GUM_ELEMENT > * partialInstantiation(const MultiDimImplementation< GUM_ELEMENT > &table, const HashTable< const DiscreteVariable *, Idx > &inst_vars)
Instantiate variables in a MultiDimImplementation.