forked from smdogroup/a2d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha2dvartuple.h
More file actions
340 lines (291 loc) · 10.3 KB
/
a2dvartuple.h
File metadata and controls
340 lines (291 loc) · 10.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
#ifndef A2D_VAR_TUPLE_H
#define A2D_VAR_TUPLE_H
#include <tuple>
#include <type_traits>
#include "../a2ddefs.h"
#include "../a2dtuple.h"
#include "a2dobj.h"
namespace A2D {
template <typename T>
struct __is_complex : public std::false_type {};
template <typename T>
struct __is_complex<A2D_complex_t<T>> : public std::true_type {};
template <typename T>
struct __is_scalar_type {
static const bool value =
std::is_arithmetic<T>::value || __is_complex<T>::value;
};
struct __basic_arithmetic_type {
static const index_t ncomp = 1;
};
template <class... Vars>
struct __count_var_components;
template <>
struct __count_var_components<> {
static const index_t ncomp = 0;
};
template <class First, class... Remain>
struct __count_var_components<First, Remain...> {
static const index_t ncomp =
std::conditional<__is_scalar_type<First>::value, __basic_arithmetic_type,
First>::type::ncomp +
__count_var_components<Remain...>::ncomp;
};
template <typename T, class... Vars>
class VarTupleBase {
public:
/**
* @brief Number of components in the tuple of variables
*/
static constexpr index_t ncomp = __count_var_components<Vars...>::ncomp;
/**
* @brief Get the number of components
*/
A2D_FUNCTION index_t get_num_components() const { return ncomp; }
protected:
template <typename I, index_t index, class TupleObj, class First,
class... Remain>
A2D_FUNCTION T& get_value_(TupleObj& var, const I comp) {
if constexpr (__is_scalar_type<First>::value) {
if (comp == 0) {
return a2d_get<index>(var);
} else if constexpr (sizeof...(Remain) == 0) {
return a2d_get<index>(var);
} else {
return get_value_<I, index + 1, TupleObj, Remain...>(var, comp - 1);
}
} else {
if constexpr (sizeof...(Remain) == 0) {
return a2d_get<index>(var)[comp];
} else {
if constexpr (First::ncomp > 0) {
if (comp < First::ncomp) {
return a2d_get<index>(var)[comp];
} else {
return get_value_<I, index + 1, TupleObj, Remain...>(
var, comp - First::ncomp);
}
} else {
return get_value_<I, index + 1, TupleObj, Remain...>(var, comp);
}
}
}
}
template <typename I, index_t index, class TupleObj, class First,
class... Remain>
A2D_FUNCTION const T& get_value_const_(const TupleObj& var,
const I comp) const {
if constexpr (__is_scalar_type<First>::value) {
if (comp == 0) {
return a2d_get<index>(var);
} else if constexpr (sizeof...(Remain) == 0) {
return a2d_get<index>(var);
} else {
return get_value_const_<I, index + 1, TupleObj, Remain...>(var,
comp - 1);
}
} else {
if constexpr (sizeof...(Remain) == 0) {
return a2d_get<index>(var)[comp];
} else {
if constexpr (First::ncomp > 0) {
if (comp < First::ncomp) {
return a2d_get<index>(var)[comp];
} else {
return get_value_const_<I, index + 1, TupleObj, Remain...>(
var, comp - First::ncomp);
}
} else {
return get_value_const_<I, index + 1, TupleObj, Remain...>(var, comp);
}
}
}
}
template <index_t index, class TupleObj, class First, class... Remain>
A2D_FUNCTION void set_values_(TupleObj& var, const First& f,
const Remain&... r) {
if constexpr (__is_scalar_type<First>::value) {
a2d_get<index>(var) = f;
} else if constexpr (First::ncomp > 0) {
First& val = a2d_get<index>(var);
for (index_t i = 0; i < First::ncomp; i++) {
val[i] = f[i];
}
}
if constexpr (sizeof...(Remain) > 0) {
set_values_<index + 1, TupleObj, Remain...>(var, r...);
}
}
template <index_t index, class TupleObj, class First, class... Remain>
A2D_FUNCTION void get_values_(const TupleObj& var, First& f,
Remain&... r) const {
if constexpr (__is_scalar_type<First>::value) {
f = a2d_get<index>(var);
} else if constexpr (First::ncomp > 0) {
const First& val = a2d_get<index>(var);
for (index_t i = 0; i < First::ncomp; i++) {
f[i] = val[i];
}
}
if constexpr (sizeof...(Remain) > 0) {
get_values_<index + 1, TupleObj, Remain...>(var, r...);
}
}
template <index_t index, class TupleObj, class First, class... Remain>
A2D_FUNCTION void zero_(TupleObj& var) {
if constexpr (__is_scalar_type<First>::value) {
a2d_get<index>(var) = T(0.0);
} else if constexpr (First::ncomp > 0) {
a2d_get<index>(var).zero();
}
if constexpr (sizeof...(Remain) > 0) {
zero_<index + 1, TupleObj, Remain...>(var);
}
}
template <index_t index, class TupleObj, class First, class... Remain>
A2D_FUNCTION void set_rand_(TupleObj& var, const T low, const T high) {
if constexpr (__is_scalar_type<First>::value) {
a2d_get<index>(var) =
low + (high - low) * (static_cast<double>(rand()) / RAND_MAX);
} else if constexpr (First::ncomp > 0) {
First& val = a2d_get<index>(var);
for (index_t i = 0; i < First::ncomp; i++) {
val[i] = low + (high - low) * (static_cast<double>(rand()) / RAND_MAX);
}
}
if constexpr (sizeof...(Remain) > 0) {
set_rand_<index + 1, TupleObj, Remain...>(var, low, high);
}
}
};
template <typename T, class... Vars>
class VarTuple : public VarTupleBase<T, Vars...> {
public:
using VarTupleObj = a2d_tuple<Vars...>;
// Default constructor that takes in no arguments
A2D_FUNCTION VarTuple() {}
// A2D_FUNCTION VarTuple() {}
A2D_FUNCTION VarTuple(const Vars&... s) {
this->template set_values_<0, VarTupleObj, Vars...>(var, s...);
}
/// @brief Access a reference to an object indexed by this class
template <typename I>
A2D_FUNCTION T& operator[](const I comp) {
return this->template get_value_<I, 0, VarTupleObj, Vars...>(var, comp);
}
/// @brief Access a reference to an object indexed by this class
template <typename I>
A2D_FUNCTION const T& operator[](const I comp) const {
return this->template get_value_const_<I, 0, VarTupleObj, Vars...>(var,
comp);
}
/// @brief Zero the components of the tuple
A2D_FUNCTION void zero() {
if constexpr (sizeof...(Vars) > 0) {
this->template zero_<0, VarTupleObj, Vars...>(var);
}
}
/// @brief Set a random set of values on an interval
A2D_FUNCTION void set_rand(T low = T(-1.0), T high = T(1.0)) {
if constexpr (sizeof...(Vars) > 0) {
this->template set_rand_<0, VarTupleObj, Vars...>(var, low, high);
}
}
/// @brief Set values into the tuple from a list of objects
A2D_FUNCTION void set_values(const Vars&... s) {
if constexpr (sizeof...(Vars) > 0) {
this->template set_values_<0, VarTupleObj, Vars...>(var, s...);
}
}
/// @brief Place the values from the tuple into list of objects
A2D_FUNCTION void get_values(Vars&... s) const {
if constexpr (sizeof...(Vars) > 0) {
this->template get_values_<0, VarTupleObj, Vars...>(var, s...);
}
}
private:
VarTupleObj var;
template <int index, typename T1, class... Vars1>
friend auto& get(VarTuple<T1, Vars1...>&);
template <int index, typename T1, class... Vars1>
friend auto& get(const VarTuple<T1, Vars1...>&);
};
template <int index, typename T, class... Vars>
A2D_FUNCTION auto& get(VarTuple<T, Vars...>& t) {
return a2d_get<index>(t.var);
}
template <int index, typename T, class... Vars>
A2D_FUNCTION auto& get(const VarTuple<T, Vars...>& t) {
return a2d_get<index>(t.var);
}
template <typename T, class... Vars>
A2D_FUNCTION auto MakeVarTuple(Vars&... s) {
return VarTuple<T, Vars...>(s...);
}
template <typename T, class... Vars>
class TieTuple : public VarTupleBase<T, Vars...> {
public:
using VarTupleObj = a2d_tuple<Vars&...>;
// Default constructor that takes in no arguments
A2D_FUNCTION TieTuple() {}
A2D_FUNCTION TieTuple(Vars&... s) : var(s...) {}
/// @brief Access a reference to an object indexed by this class
template <typename I>
A2D_FUNCTION T& operator[](const I comp) {
return this->template get_value_<I, 0, VarTupleObj, Vars...>(var, comp);
}
/// @brief Access a reference to an object indexed by this class
template <typename I>
A2D_FUNCTION const T& operator[](const I comp) const {
return this->template get_value_const_<I, 0, VarTupleObj, Vars...>(var,
comp);
}
/// @brief Zero the components of the tuple
A2D_FUNCTION void zero() {
if constexpr (sizeof...(Vars) > 0) {
this->template zero_<0, VarTupleObj, Vars...>(var);
}
}
/// @brief Set a random set of values on an interval
A2D_FUNCTION void set_rand(T low = T(-1.0), T high = T(1.0)) {
if constexpr (sizeof...(Vars) > 0) {
this->template set_rand_<0, VarTupleObj, Vars...>(var, low, high);
}
}
/// @brief Set values into the tuple from a list of objects
A2D_FUNCTION void set_values(const Vars&... s) {
if constexpr (sizeof...(Vars) > 0) {
this->template set_values_<0, VarTupleObj, Vars...>(var, s...);
}
}
/// @brief Place the values from the tuple into list of objects
A2D_FUNCTION void get_values(Vars&... s) const {
if constexpr (sizeof...(Vars) > 0) {
this->template get_values_<0, VarTupleObj, Vars...>(var, s...);
}
}
private:
VarTupleObj var;
template <int index, typename T1, class... Vars1>
friend auto get(TieTuple<T1, Vars1...>&);
template <int index, typename T1, class... Vars1>
friend auto get(const TieTuple<T1, Vars1...>&);
};
template <int index, typename T, class... Vars>
A2D_FUNCTION auto get(TieTuple<T, Vars...>& t) {
return a2d_get<index>(t.var);
}
template <int index, typename T, class... Vars>
A2D_FUNCTION auto get(const TieTuple<T, Vars...>& t) {
return a2d_get<index>(t.var);
}
template <typename T, class... Vars>
A2D_FUNCTION auto MakeTieTuple(Vars&... s) {
return TieTuple<T, Vars...>(s...);
}
template <typename T, ADseed seed, class... Vars>
A2D_FUNCTION auto MakeTieTuple(Vars&... s) {
return MakeTieTuple<T>(GetSeed<seed>::get_obj(s)...);
}
} // namespace A2D
#endif // A2D_VAR_TUPLE_H