-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUNtoU3.h
590 lines (487 loc) · 19.9 KB
/
UNtoU3.h
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
// UNtoU3.h - a header file that implements the algorithm for reduction of an U(N) irreducible representation (irrep) into U(3) irreps.
//
// License: BSD 2-Clause (https://opensource.org/licenses/BSD-2-Clause)
//
// Copyright (c) 2019, Daniel Langr
// All rights reserved.
#ifndef UNTOU3_H
#define UNTOU3_H
// Optionally, define before inclsion of this header file:
//
// #define UNTOU3_ENABLE_OPENMP : enable parallelization of the algorithm based on OpenMP
// #define UNTOU3_DISABLE_TCE : disable tail call elimination in recursive calls
// #define UNTOU3_DISABLE_UNORDERED : disable the use of a hash table for U(3) weights (binary search tree is used instead)
// #define UNTOU3_DISABLE_PRECALC : disable precalculation of low Gelfand pattern rows to U(3) weights
#include <array>
#include <cassert>
#include <cstdint>
#include <vector>
#ifndef UNTOU3_DISABLE_UNORDERED
#include <unordered_map>
#else
#include <map>
#endif
#ifndef UNTOU3_DISABLE_UNORDERED
// An auxiliary struct that implements a hasher for an array of 3 numbers
template <typename T>
struct array_3_hasher
{
std::size_t operator()(const std::array<T, 3>& key) const
{
return key[0] + (key[1] << 8) + (key[2] << 16);
}
};
#endif /* UNTOU3_DISABLE_UNORDERED */
// Generates U(3) weights and their multiplicites in an input U(N) irrep and allows to evaluate their level dimensionalities.
// Lables of U(N) are limited to {2,1,0}.
//
// T - type of the computer representation of U(3) weight labels
// U - type used for storing multiplicities of U(3) weights
//
// Example:
// UNtoU3<> gen;
// gen.generateXYZ(2); // n=2, N=(n+1)*(n+2)/2
// gen.generateU3Weights(1, 4, 1); // n2=1, n1=4, n0=1 represent number of twos, ones, and zeros in the input U(N) irrep, respectively
// for (const auto& pair : gen.multMap()) { // iterate over U(3) weights
// const auto & w = pair.first; // get weight labels
// if (auto D_l = gen.getLevelDimensionality(w)) // get weight level dimensionality
// std::cout << "[" << w[0] << "," << w[1] << "," << w[2] << "] : " << D_l << std::endl;
// }
template <typename T = uint32_t, typename U = uint32_t>
class UNtoU3 {
public:
UNtoU3();
~UNtoU3();
// type for storing labels of U(3) weights
using U3Weight = std::array<T, 3>;
// type of the data structure used for storing U(3) weights and their multiplicities
#ifndef UNTOU3_DISABLE_UNORDERED
using U3MultMap = std::unordered_map<U3Weight, U, array_3_hasher<T>>;
#else
using U3MultMap = std::map<U3Weight, U>;
#endif /* U3MultMap */
// type of the representation of a single Gelfand pattern row, which contain its number of twos, ones, and zeros
using GelfandRow = std::array<uint16_t, 3>;
// type of a Galfand pattern labels
using GRT = GelfandRow::value_type;
// definition of the order of axis for weight vectors
enum { NZ, NX, NY };
// Generates HO quanta vectors for given nth HO level.
// Need to be used befor generateU3Weights member function is called.
void generateXYZ(int n);
// Generates U(3) weights and their multiplicities for an input U(N) irrep [f].
// [f] is specified by the number of twos n2, ones n1, and zeros n0.
// N=n2+n1+n0 must be equal to (n+1)*(n+2)/2, where n was used as an argument of generateXYZ.
void generateU3Weights(uint16_t n2, uint16_t n1, uint16_t n0);
// Provides an access to the table of U(3) weights and their multiplicities generated by generateU3Weights.
// Returns a constant reference to the computer representation of this table of type U3MultMap.
const U3MultMap& multMap() const { return mult_; }
// Get level dimensionality for a given U(3) weight passed as an argument.
U getLevelDimensionality(const U3Weight&) const;
private:
// HO quanta vectors generated by generateXYZ
std::array<std::vector<uint32_t>, 3> xyz_;
// table of resulting U(3) irreps and their multiplicities
U3MultMap mult_;
#ifndef UNTOU3_DISABLE_PRECALC
// arrays used to store precalculated contributions of low-level Gelfand patterns into resulting U(3) weights
std::array<std::array<std::array<uint8_t, 4>, 4>, 4> cnt_;
std::array<std::array<std::array<uint16_t*, 4>, 4>, 4> ptr_;
std::array<uint16_t, 3 * 45> conts_;
#endif
#ifdef UNTOU3_ENABLE_OPENMP
// thread-local tables for generated U(3) weights and their multiplicites, which are finally merged into mult_
static U3MultMap* mult_tl_;
#pragma omp threadprivate(mult_tl_)
#endif
// Recursive function for generation of Gelfand patterns.
// It calls itself for all possible lower Gelfand pattern rows generated by the input Gelfand pattern row.
// At the end of recursion, it increments the multiplicity of resulting U(3) weight ith mult_ (or mult_tl_).
// gpr - representation of an input gelfand pattern row
// pp - partial contribution of higher Gelfand pattern rows to the generated U(3) weights
void generateU3WeightsRec(GelfandRow gpr, U3Weight pp);
#ifndef UNTOU3_DISABLE_PRECALC
// initialize arrays cnt_ and ptr_
void init_cnt_ptr();
// initialize array conts_
void init_conts();
#endif
};
#ifdef UNTOU3_ENABLE_OPENMP
template <typename T, typename U>
typename UNtoU3<T, U>::U3MultMap* UNtoU3<T, U>::mult_tl_;
#endif
template <typename T, typename U>
UNtoU3<T, U>::UNtoU3()
{
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp parallel
mult_tl_ = new U3MultMap{};
#endif
#ifndef UNTOU3_DISABLE_PRECALC
init_cnt_ptr();
#endif
}
template <typename T, typename U>
UNtoU3<T, U>::~UNtoU3()
{
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp parallel
delete mult_tl_;
#endif
}
template <typename T, typename U>
void UNtoU3<T, U>::generateXYZ(int n)
{
for (auto & v : xyz_) v.clear();
for (int k = 0; k <= n; k++) {
uint32_t nz = n - k;
for (int nx = k; nx >= 0; nx--) {
xyz_[NX].push_back(nx);
xyz_[NY].push_back(n - nz - nx);
xyz_[NZ].push_back(nz);
}
}
#ifndef UNTOU3_DISABLE_PRECALC
init_conts();
#endif
}
template <typename T, typename U>
U UNtoU3<T, U>::getLevelDimensionality(const U3Weight& labels) const
{
T f1 = labels[0], f2 = labels[1], f3 = labels[2];
if ((f1 < f2) || (f2 < f3)) return 0;
auto u3_mult = mult_.find({f1, f2, f3});
assert(u3_mult != mult_.end());
auto mult = u3_mult->second;
u3_mult = mult_.find({f1 + 1, f2 + 1, f3 - 2});
mult += (u3_mult == mult_.end()) ? 0 : u3_mult->second;
u3_mult = mult_.find({f1 + 2, f2 - 1, f3 - 1});
mult += (u3_mult == mult_.end()) ? 0 : u3_mult->second;
u3_mult = mult_.find({f1 + 2, f2, f3 - 2});
mult -= (u3_mult == mult_.end()) ? 0 : u3_mult->second;
u3_mult = mult_.find({f1 + 1, f2 - 1, f3});
mult -= (u3_mult == mult_.end()) ? 0 : u3_mult->second;
u3_mult = mult_.find({f1, f2 + 1, f3 - 1});
mult -= (u3_mult == mult_.end()) ? 0 : u3_mult->second;
return mult;
}
template <typename T, typename U>
void UNtoU3<T, U>::generateU3Weights(uint16_t n2, uint16_t n1, uint16_t n0)
{
mult_.clear(); // ???
// for (auto & e : mult_) e.second = 0; // ???
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp parallel
{
mult_tl_->clear(); // ???
// for (auto & e : *mult_tl_) e.second = 0; // ???
#pragma omp single
generateU3WeightsRec({n2, n1, n0}, {0, 0, 0});
#pragma omp critical
for (const auto temp : *mult_tl_)
mult_[temp.first] += temp.second;
}
#else /* UNTOU3_ENABLE_OPENMP */
generateU3WeightsRec({n2, n1, n0}, {0, 0, 0});
#endif /* UNTOU3_ENABLE_OPENMP */
}
template <typename T, typename U>
void UNtoU3<T, U>::generateU3WeightsRec(GelfandRow gpr, U3Weight pp)
{
size_t N = gpr[0] + gpr[1] + gpr[2] - 1;
#ifndef UNTOU3_DISABLE_TCE
while
#else
if
#endif
(N >
#ifndef UNTOU3_DISABLE_PRECALC
2
#else
0
#endif
) {
if (gpr[0]) {
if (gpr[1] || gpr[2]) {
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp task if (N > 8) firstprivate(gpr, pp)
#endif
generateU3WeightsRec( { (GRT)(gpr[0] - 1), gpr[1], gpr[2] },
{ pp[0] + 2 * xyz_[0][N], pp[1] + 2 * xyz_[1][N], pp[2] + 2 * xyz_[2][N] });
if (gpr[2])
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp task if (N > 8) firstprivate(gpr, pp)
#endif
generateU3WeightsRec( { (GRT)(gpr[0] - 1), (GRT)(gpr[1] + 1), (GRT)(gpr[2] - 1) },
{ pp[0] + xyz_[0][N], pp[1] + xyz_[1][N], pp[2] + xyz_[2][N] });
}
else {
#ifndef UNTOU3_DISABLE_TCE
gpr[0]--;
pp[0] += 2 * xyz_[0][N]; pp[1] += 2 * xyz_[1][N]; pp[2] += 2 * xyz_[2][N];
#else /* UNTOU3_DISABLE_TCE */
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp task if (N > 8) firstprivate(gpr, pp)
#endif
generateU3WeightsRec( { (GRT)(gpr[0] - 1), gpr[1], gpr[2] },
{ pp[0] + 2 * xyz_[0][N], pp[1] + 2 * xyz_[1][N], pp[2] + 2 * xyz_[2][N] });
#endif /* UNTOU3_DISABLE_TCE */
}
}
if (gpr[1])
if (gpr[2])
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp task if (N > 8) firstprivate(gpr, pp)
#endif
generateU3WeightsRec( { gpr[0], (GRT)(gpr[1] - 1), gpr[2] },
{ pp[0] + xyz_[0][N], pp[1] + xyz_[1][N], pp[2] + xyz_[2][N] });
else {
#ifndef UNTOU3_DISABLE_TCE
gpr[1]--;
pp[0] += xyz_[0][N]; pp[1] += xyz_[1][N]; pp[2] += xyz_[2][N];
#else /* UNTOU3_DISABLE_TCE */
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp task if (N > 8) firstprivate(gpr, pp)
#endif
generateU3WeightsRec( { gpr[0], (GRT)(gpr[1] - 1), gpr[2] },
{ pp[0] + xyz_[0][N], pp[1] + xyz_[1][N], pp[2] + xyz_[2][N] });
#endif /* UNTOU3_DISABLE_TCE */
}
if (gpr[2]) {
#ifndef UNTOU3_DISABLE_TCE
gpr[2]--;
#else /* UNTOU3_DISABLE_TCE */
#ifdef UNTOU3_ENABLE_OPENMP
#pragma omp task if (N > 8) firstprivate(gpr, pp)
#endif
generateU3WeightsRec( { gpr[0], gpr[1], (GRT)(gpr[2] - 1) }, { pp[0], pp[1], pp[2] });
#endif /* UNTOU3_DISABLE_TCE */
}
#ifndef UNTOU3_DISABLE_TCE
N--;
#endif
}
#ifdef UNTOU3_DISABLE_TCE
else {
#endif
#ifndef UNTOU3_DISABLE_PRECALC
auto c = cnt_[gpr[0]][gpr[1]][gpr[2]];
if (c > 0) {
auto p = ptr_[gpr[0]][gpr[1]][gpr[2]];
for (int i = 0; i < c; i++) {
U3Weight pp_;
pp_[0] = pp[0] + *p++;
pp_[1] = pp[1] + *p++;
pp_[2] = pp[2] + *p++;
#ifdef UNTOU3_ENABLE_OPENMP
(*mult_tl_)[pp_] += 1;
#else
mult_[pp_] += 1;
#endif
}
}
else {
#ifdef UNTOU3_ENABLE_OPENMP
(*mult_tl_)[pp] += 1;
#else
mult_[pp] += 1;
#endif
}
#else /* UNTOU3_DISABLE_PRECALC */
auto temp = 2 * gpr[0] + gpr[1];
pp[0] += temp * xyz_[0][0];
pp[1] += temp * xyz_[1][0];
pp[2] += temp * xyz_[2][0];
#ifdef UNTOU3_ENABLE_OPENMP
(*mult_tl_)[pp] += 1;
#else
mult_[pp] += 1;
#endif
#endif /* UNTOU3_DISABLE_PRECALC */
#ifdef UNTOU3_DISABLE_TCE
}
#endif
}
#ifndef UNTOU3_DISABLE_PRECALC
template <typename T, typename U>
void UNtoU3<T, U>::init_cnt_ptr()
{
for (int i = 0; i < 4; i++)
for (int j = 0; j < 4; j++)
for (int k = 0; k < 4; k++)
cnt_[i][j][k] = 0;
cnt_[3][0][0] = 1; cnt_[0][3][0] = 1; // 2
cnt_[2][1][0] = 3; cnt_[2][0][1] = 6; cnt_[1][2][0] = 3; // 12
cnt_[0][2][1] = 3; cnt_[1][0][2] = 6; cnt_[0][1][2] = 3; // 12
cnt_[1][1][1] = 8; // 8
cnt_[2][0][0] = 1; cnt_[0][2][0] = 1; // 2
cnt_[1][1][0] = 2; cnt_[1][0][1] = 3; cnt_[0][1][1] = 2; // 7
cnt_[1][0][0] = 1; cnt_[0][1][0] = 1; // 2
auto p = conts_.data();
ptr_[3][0][0] = p; p += 1 * 3; ptr_[0][3][0] = p; p += 1 * 3;
ptr_[2][1][0] = p; p += 3 * 3; ptr_[2][0][1] = p; p += 6 * 3; ptr_[1][2][0] = p; p += 3 * 3;
ptr_[0][2][1] = p; p += 3 * 3; ptr_[1][0][2] = p; p += 6 * 3; ptr_[0][1][2] = p; p += 3 * 3;
ptr_[1][1][1] = p; p += 8 * 3;
ptr_[2][0][0] = p; p += 1 * 3; ptr_[0][2][0] = p; p += 1 * 3;
ptr_[1][1][0] = p; p += 2 * 3; ptr_[1][0][1] = p; p += 3 * 3; ptr_[0][1][1] = p; p += 2 * 3;
ptr_[1][0][0] = p; p += 1 * 3; ptr_[0][1][0] = p;
}
template <typename T, typename U>
void UNtoU3<T, U>::init_conts()
{
auto p = conts_.data();
// (3,0,0)
*p++ = 2 * xyz_[0][2] + 2 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 2 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 2 * xyz_[2][1] + 2 * xyz_[2][0];
// (0,3,0)
*p++ = 1 * xyz_[0][2] + 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 1 * xyz_[2][1] + 1 * xyz_[2][0];
// (2,1,0)
*p++ = 1 * xyz_[0][2] + 2 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 2 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 2 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 1 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 1 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 1 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 2 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 2 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 2 * xyz_[2][1] + 1 * xyz_[2][0];
// (2,0,1)
*p++ = 0 * xyz_[0][2] + 2 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 2 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 2 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 1 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 1 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 1 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 2 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 2 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 2 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 0 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 0 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 0 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 1 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 2 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 2 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 2 * xyz_[2][1] + 0 * xyz_[2][0];
// (1,2,0)
*p++ = 1 * xyz_[0][2] + 1 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 1 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 1 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 2 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 2 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 2 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 1 * xyz_[2][1] + 1 * xyz_[2][0];
// (0,2,1)
*p++ = 0 * xyz_[0][2] + 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 1 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 0 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 0 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 0 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 1 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 1 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 1 * xyz_[2][1] + 0 * xyz_[2][0];
// (1,0,2)
*p++ = 0 * xyz_[0][2] + 0 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 0 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 0 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 0 * xyz_[0][2] + 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 1 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 0 * xyz_[0][2] + 2 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 2 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 2 * xyz_[2][1] + 0 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 0 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 0 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 0 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 1 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 1 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 1 * xyz_[2][1] + 0 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 0 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 0 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 0 * xyz_[2][1] + 0 * xyz_[2][0];
// (0,1,2)
*p++ = 0 * xyz_[0][2] + 0 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 0 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 0 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 0 * xyz_[0][2] + 1 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 1 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 1 * xyz_[2][1] + 0 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 0 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 0 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 0 * xyz_[2][1] + 0 * xyz_[2][0];
// (1,1,1)
*p++ = 0 * xyz_[0][2] + 1 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 1 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 1 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 0 * xyz_[0][2] + 2 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 0 * xyz_[1][2] + 2 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 0 * xyz_[2][2] + 2 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 0 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 0 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 0 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 1 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 2 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 2 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 2 * xyz_[2][1] + 0 * xyz_[2][0];
*p++ = 1 * xyz_[0][2] + 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][2] + 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][2] + 1 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 0 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 0 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 0 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 2 * xyz_[0][2] + 1 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 2 * xyz_[1][2] + 1 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 2 * xyz_[2][2] + 1 * xyz_[2][1] + 0 * xyz_[2][0];
// (2,0,0)
*p++ = 2 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 2 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 2 * xyz_[2][1] + 2 * xyz_[2][0];
// (0,2,0)
*p++ = 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][1] + 1 * xyz_[2][0];
// (1,1,0)
*p++ = 1 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 1 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 1 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 2 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 2 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 2 * xyz_[2][1] + 1 * xyz_[2][0];
// (1,0,1)
*p++ = 0 * xyz_[0][1] + 2 * xyz_[0][0];
*p++ = 0 * xyz_[1][1] + 2 * xyz_[1][0];
*p++ = 0 * xyz_[2][1] + 2 * xyz_[2][0];
*p++ = 2 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 2 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 2 * xyz_[2][1] + 0 * xyz_[2][0];
*p++ = 1 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][1] + 1 * xyz_[2][0];
// (0,1,1)
*p++ = 0 * xyz_[0][1] + 1 * xyz_[0][0];
*p++ = 0 * xyz_[1][1] + 1 * xyz_[1][0];
*p++ = 0 * xyz_[2][1] + 1 * xyz_[2][0];
*p++ = 1 * xyz_[0][1] + 0 * xyz_[0][0];
*p++ = 1 * xyz_[1][1] + 0 * xyz_[1][0];
*p++ = 1 * xyz_[2][1] + 0 * xyz_[2][0];
// (1,0,0)
*p++ = 2 * xyz_[0][0];
*p++ = 2 * xyz_[1][0];
*p++ = 2 * xyz_[2][0];
// (0,1,0)
*p++ = 1 * xyz_[0][0];
*p++ = 1 * xyz_[1][0];
*p++ = 1 * xyz_[2][0];
}
#endif /* UNTOU3_DISABLE_PRECALC */
#endif /* UNTOU3_H */