TeDDy 4.1.0
Decision diagram library.
Loading...
Searching...
No Matches
reliability.hpp
1#ifndef LIBTEDDY_RELIABILITY_HPP
2#define LIBTEDDY_RELIABILITY_HPP
3
4#include <libteddy/details/reliability_manager.hpp>
5
6namespace teddy
7{
8using default_oder = std::vector<int32>;
9
15 public reliability_manager<degrees::fixed<2>, domains::fixed<2>>
16{
25 int32 componentCount,
26 int64 nodePoolSize,
27 std::vector<int32> order = default_oder()
28 );
29
39 int32 componentCount,
40 int64 nodePoolSize,
41 int64 overflowNodePoolSize,
42 std::vector<int32> order = default_oder()
43 );
44};
45
51template<int32 M>
53 public reliability_manager<degrees::fixed<M>, domains::fixed<M>>
54{
63 int32 componentCount,
64 int64 nodePoolSize,
65 std::vector<int32> order = default_oder()
66 );
67
77 int32 componentCount,
78 int64 nodePoolSize,
79 int64 overflowNodePoolSize,
80 std::vector<int32> order = default_oder()
81 );
82};
83
88struct imss_manager : public reliability_manager<degrees::mixed, domains::mixed>
89{
100 int32 componentCount,
101 int64 nodePoolSize,
102 std::vector<int32> domains,
103 std::vector<int32> order = default_oder()
104 );
105
117 int32 componentCount,
118 int64 nodePoolSize,
119 int64 overflowNodePoolSize,
120 std::vector<int32> domains,
121 std::vector<int32> order = default_oder()
122 );
123};
124
130template<int32 M>
132 public reliability_manager<degrees::fixed<M>, domains::mixed>
133{
144 int32 componentCount,
145 int64 nodePoolSize,
146 std::vector<int32> domains,
147 std::vector<int32> order = default_oder()
148 );
149
161 int32 componentCount,
162 int64 nodePoolSize,
163 int64 overflowNodePoolSize,
164 std::vector<int32> domains,
165 std::vector<int32> order = default_oder()
166 );
167};
168
170 int32 const componentCount,
171 int64 const nodePoolSize,
172 std::vector<int32> order
173) :
175 componentCount,
176 nodePoolSize,
177 nodePoolSize / 2,
178 static_cast<std::vector<int32>&&>(order)
179 )
180{
181}
182
184 int32 const componentCount,
185 int64 const nodePoolSize,
186 int64 const overflowNodePoolSize,
187 std::vector<int32> order
188) :
189 reliability_manager<degrees::fixed<2>, domains::fixed<2>>(
190 componentCount,
191 nodePoolSize,
192 overflowNodePoolSize,
193 static_cast<std::vector<int32>&&>(order)
194 )
195{
196}
197
198template<int32 M>
200 int32 const componentCount,
201 int64 const nodePoolSize,
202 std::vector<int32> order
203) :
205 componentCount,
206 nodePoolSize,
207 nodePoolSize / 2,
208 static_cast<std::vector<int32>&&>(order)
209 )
210{
211}
212
213template<int32 M>
215 int32 const componentCount,
216 int64 const nodePoolSize,
217 int64 const overflowNodePoolSize,
218 std::vector<int32> order
219) :
220 reliability_manager<degrees::fixed<M>, domains::fixed<M>>(
221 componentCount,
222 nodePoolSize,
223 overflowNodePoolSize,
224 static_cast<std::vector<int32>&&>(order)
225 )
226{
227}
228
230 int32 const componentCount,
231 int64 const nodePoolSize,
232 std::vector<int32> domains,
233 std::vector<int32> order
234) :
236 componentCount,
237 nodePoolSize,
238 nodePoolSize / 2,
239 static_cast<std::vector<int32>&&>(domains),
240 static_cast<std::vector<int32>&&>(order)
241 )
242{
243}
244
246 int32 const componentCount,
247 int64 const nodePoolSize,
248 int64 const overflowNodePoolSize,
249 std::vector<int32> domains,
250 std::vector<int32> order
251) :
252 reliability_manager<degrees::mixed, domains::mixed>(
253 componentCount,
254 nodePoolSize,
255 overflowNodePoolSize,
256 static_cast<std::vector<int32>&&>(domains),
257 static_cast<std::vector<int32>&&>(order)
258 )
259{
260}
261
262template<int32 M>
264 int32 const componentCount,
265 int64 const nodePoolSize,
266 std::vector<int32> domains,
267 std::vector<int32> order
268) :
270 componentCount,
271 nodePoolSize,
272 nodePoolSize / 2,
273 static_cast<std::vector<int32>&&>(domains),
274 static_cast<std::vector<int32>&&>(order)
275 )
276{
277}
278
279template<int32 M>
281 int32 const componentCount,
282 int64 const nodePoolSize,
283 int64 const overflowNodePoolSize,
284 std::vector<int32> domains,
285 std::vector<int32> order
286) :
287 reliability_manager<degrees::fixed<M>, domains::mixed>(
288 componentCount,
289 nodePoolSize,
290 overflowNodePoolSize,
291 static_cast<std::vector<int32>&&>(domains),
292 static_cast<std::vector<int32>&&>(order)
293 )
294{
295}
296} // namespace teddy
297
298#endif
Base class for reliability managers.
Definition reliability_manager.hpp:43
Manager for BDDs and analysis of Binary State System.
Definition reliability.hpp:16
bss_manager(int32 componentCount, int64 nodePoolSize, std::vector< int32 > order=default_oder())
Initializes BSS manager.
Definition reliability.hpp:169
Manager for iMDDs and analysis of non-homogenous Multi-state Systems.
Definition reliability.hpp:133
ifmss_manager(int32 componentCount, int64 nodePoolSize, std::vector< int32 > domains, std::vector< int32 > order=default_oder())
Initializes ifMSS manager.
Definition reliability.hpp:263
Manager for iMDDs and analysis of non-homogenous Multi-state Systems.
Definition reliability.hpp:89
imss_manager(int32 componentCount, int64 nodePoolSize, std::vector< int32 > domains, std::vector< int32 > order=default_oder())
Initializes iMSS manager.
Definition reliability.hpp:229
Manager for MDDs and analysis of homogeneous Multi-State Systems.
Definition reliability.hpp:54
mss_manager(int32 componentCount, int64 nodePoolSize, std::vector< int32 > order=default_oder())
Initializes MSS manager.
Definition reliability.hpp:199