forked from sanshar/Block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Symmetry.C
729 lines (668 loc) · 18.2 KB
/
Symmetry.C
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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
/*
Developed by Sandeep Sharma and Garnet K.-L. Chan, 2012
Copyright (c) 2012, Garnet K.-L. Chan
This program is integrated in Molpro with the permission of
Sandeep Sharma and Garnet K.-L. Chan
*/
#include "nonAbelianGroup.h"
#include "Symmetry.h"
#include <boost/lexical_cast.hpp>
#include <string>
#include <newmat.h>
#include <boost/archive/binary_iarchive.hpp>
#include <boost/archive/binary_oarchive.hpp>
#include "global.h"
#ifndef SERIAL
#include <boost/mpi.hpp>
#endif
template class multiarray<int>;
template class array_2d<int>;
array_2d<int> groupTable;
SpinAdapted::nonAbelianGroup nonAbelianGrp;
namespace SpinAdapted {
void Symmetry::InitialiseTable(string psym)
{
if (sym == "c1")
{
groupTable.resize(1, 1);
groupTable(0, 0) = 0;
}
else if (sym == "ci" || sym == "cs" || sym == "c2")
{
/*
inversion symmetry table
0 1
1 0
*/
groupTable.resize(2, 2);
groupTable(0, 0) = 0;
groupTable(0, 1) = 1;
groupTable(1, 0) = 1;
groupTable(1, 1) = 0;
}
else if (sym == "c2v" || sym == "c2h" || sym == "d2")
{
/*
c2v symmetry table
0 1 2 3
1 0 3 2
2 3 0 1
3 2 1 0
*/
groupTable.resize(4, 4);
groupTable(0, 0) = 0;
groupTable(0, 1) = 1;
groupTable(0, 2) = 2;
groupTable(0, 3) = 3;
groupTable(1, 0) = 1;
groupTable(1, 1) = 0;
groupTable(1, 2) = 3;
groupTable(1, 3) = 2;
groupTable(2, 0) = 2;
groupTable(2, 1) = 3;
groupTable(2, 2) = 0;
groupTable(2, 3) = 1;
groupTable(3, 0) = 3;
groupTable(3, 1) = 2;
groupTable(3, 2) = 1;
groupTable(3, 3) = 0;
}
else if (sym == "d2h")
{
/*
data multt /1,2,3,4,5,6,7,8,
1 2,1,4,3,6,5,8,7,
2 3,4,1,2,7,8,5,6,
3 4,3,2,1,8,7,6,5,
4 5,6,7,8,1,2,3,4,
5 6,5,8,7,2,1,4,3,
6 7,8,5,6,3,4,1,2,
7 8,7,6,5,4,3,2,1/
*/
Matrix d2h(8, 8);
d2h << 0 << 1 << 2 << 3 << 4 << 5 << 6 << 7
<< 1 << 0 << 3 << 2 << 5 << 4 << 7 << 6
<< 2 << 3 << 0 << 1 << 6 << 7 << 4 << 5
<< 3 << 2 << 1 << 0 << 7 << 6 << 5 << 4
<< 4 << 5 << 6 << 7 << 0 << 1 << 2 << 3
<< 5 << 4 << 7 << 6 << 1 << 0 << 3 << 2
<< 6 << 7 << 4 << 5 << 2 << 3 << 0 << 1
<< 7 << 6 << 5 << 4 << 3 << 2 << 1 << 0;
groupTable.resize(8, 8);
for (int i = 0; i < 8; ++i)
for (int j = 0; j < 8; ++j)
groupTable(i, j) = static_cast<int>(d2h.element(i, j));
}
else if (sym == "dinfh") {
NonabelianSym = true;
groupTable.resize(4, 4);
groupTable(0, 0) = 0;
groupTable(0, 1) = 1;
groupTable(0, 2) = 2;
groupTable(0, 3) = 3;
groupTable(1, 0) = 1;
groupTable(1, 1) = 0;
groupTable(1, 2) = 3;
groupTable(1, 3) = 2;
groupTable(2, 0) = 2;
groupTable(2, 1) = 3;
groupTable(2, 2) = 0;
groupTable(2, 3) = 1;
groupTable(3, 0) = 3;
groupTable(3, 1) = 2;
groupTable(3, 2) = 1;
groupTable(3, 3) = 0;
}
else if (sym == "c3v") {
NonabelianSym = true;
nonAbelianGrp = C3v();
}
else if (sym == "c5v") {
NonabelianSym = true;
nonAbelianGrp = C5v();
}
else if (sym == "d5h") {
NonabelianSym = true;
nonAbelianGrp = D5h();
}
else if (sym == "d4h") {
NonabelianSym = true;
nonAbelianGrp = D4h();
}
else if (sym == "trans") {
//do nothing;
}
else if (sym == "lzsym") {
//do nothing
groupTable.resize(40,40);
}
else if (sym == "dinfh_abelian") {
groupTable.resize(41, 41);
groupTable(0, 0) = 0;
groupTable(0, 1) = 1;
groupTable(0, 2) = 2;
groupTable(0, 3) = 3;
groupTable(1, 0) = 1;
groupTable(1, 1) = 0;
groupTable(1, 2) = 3;
groupTable(1, 3) = 2;
groupTable(2, 0) = 2;
groupTable(2, 1) = 3;
groupTable(2, 2) = 0;
groupTable(2, 3) = 1;
groupTable(3, 0) = 3;
groupTable(3, 1) = 2;
groupTable(3, 2) = 1;
groupTable(3, 3) = 0;
}
else {
pout << "Symmetry of the molecule has to be one of c1, ci, cs, c2, c2h, c2v, d2, d2h or dinfh"<<endl;
pout << "Symmetry provided in the input file "<<sym<<endl;
abort();
}
}
bool Symmetry::irrepAllowed(int irrep)
{
if ( (sym == "dinfh"|| sym == "dinfh_abelian")) {
if ((irrep<0 && irrep >-4) || irrep == 2 || irrep == 3) {
pout << "Orbital cannot have an irreducible representation of "<<irrep+1<<" with dinfh symmetry"<<endl;
abort();
}
else
return true;
}
if (sym == "d2h" && (irrep<0 || irrep >= 8)) {
pout << "Orbital cannot have an irreducible representation of "<<irrep+1<<" with "<<sym<<" symmetry"<<endl;
abort();
}
if ((sym == "c2v" || sym == "c2h" || sym == "d2") && (irrep<0 || irrep >= 4)) {
pout << "Orbital cannot have an irreducible representation of "<<irrep+1<<" with "<<sym<<" symmetry"<<endl;
abort();
}
if ((sym == "ci" || sym == "c2" || sym == "cs" ) && (irrep <0 || irrep >=2)) {
pout << "Orbital cannot have an irreducible representation of "<<irrep+1<<" with "<<sym<<" symmetry"<<endl;
abort();
}
if (sym == "c1" && irrep != 0) {
pout << "Orbital cannot have an irreducible representation of "<<irrep+1<<" with "<<sym<<" symmetry"<<endl;
abort();
}
if ( (NonabelianSym) && (irrep < 0 || irrep >= nonAbelianGrp.getNumIrreps())) {
pout << "Orbital cannot have an irreducible representation of "<<irrep+1<<" with "<<sym<<" symmetry"<<endl;
abort();
}
if (sym == "trans") {
std::vector<int> irreps = decompress(irrep);
if (irreps[0] >= NPROP[0] || irreps[0]< 0 ||
irreps[1] >= NPROP[1] || irreps[1]< 0 ||
irreps[2] >= NPROP[2] || irreps[2]< 0 ) {
pout << "decompressing the irrep "<<irrep<<" leads to k points "<<irreps[0]<<" "<<irreps[1]<<" "<<irreps[2]<<endl;
abort();
}
}
if (sym == "lzsym") {
return true;
}
return true;
}
std::vector<int> Symmetry::decompress(int pirrep)
{
//this is used to decompress the irrep to 3 k points
std::vector<int> out(3,0);
int irrep = abs(pirrep);
out[2] = irrep/PROPBITLEN/PROPBITLEN;
out[1] = (irrep - out[2]*PROPBITLEN*PROPBITLEN)/PROPBITLEN;
out[0] = irrep - out[2]*PROPBITLEN*PROPBITLEN - out[1]*PROPBITLEN;
if (irrep == -pirrep) {
out[0] *=-1;
out[1] *=-1;
out[2] *=-1;
}
return out;
}
int Symmetry::compress(std::vector<int>& irreps)
{
return irreps[0] + irreps[2]*PROPBITLEN*PROPBITLEN + irreps[1]*PROPBITLEN;
}
string Symmetry::stringOfIrrep(int irrep)
{
string symbol;
if (sym == "d2h") {
switch(irrep)
{
case(0):
symbol = "Ag"; break;
case(1):
symbol = "B3u"; break;
case(2):
symbol = "B2u"; break;
case(3):
symbol = "B1g"; break;
case(4):
symbol = "B1u"; break;
case(5):
symbol = "B2g"; break;
case(6):
symbol = "B3g"; break;
case(7):
symbol = "Au"; break;
}
}
else if (sym == "c2v") {
switch(irrep)
{
case(0):
symbol = "A1"; break;
case(1):
symbol = "B1"; break;
case(2):
symbol = "B2"; break;
case(3):
symbol = "A2"; break;
}
}
else if (sym == "c2h") {
switch(irrep)
{
case(0):
symbol = "Ag"; break;
case(1):
symbol = "Au"; break;
case(2):
symbol = "Bu"; break;
case(3):
symbol = "Bg"; break;
}
}
else if (sym == "d2") {
switch(irrep)
{
case(0):
symbol = "A"; break;
case(1):
symbol = "B3";//B3
break;
case(2):
symbol = "B2";//B1
break;
case(3):
symbol = "B1";//B2
break;
}
}
else if (sym == "cs")
symbol = (irrep == 0) ? "A'" : "A''";
else if (sym == "c2")
symbol = (irrep == 0) ? "A" : "B";
else if (sym == "ci")
symbol = (irrep == 0) ? "Ag" : "Au";
else if (sym == "dinfh") {
string output = "";
char goru = irrep%2 == 0 ? 'g' : 'u';
int lz = max(0,(abs(irrep)-2)/2);
lz *= irrep<0 ? -1 : 1;
output+= boost::lexical_cast<string>(lz);
output+=goru;
if (irrep <2) output+= '+';
else if (irrep >=2 && irrep <4 ) output+= '-';
symbol = output;
}
else if (NonabelianSym) {
return nonAbelianGrp.getIrrepName(irrep);
}
else if(sym == "trans") {
std::vector<int> irreps = decompress(irrep);
string output = "";
output+=boost::lexical_cast<string>(irreps[2]);
output+=boost::lexical_cast<string>(irreps[1]);
output+=boost::lexical_cast<string>(irreps[0]);
symbol = output;
}
else if (sym == "lzsym") {
symbol = boost::lexical_cast<string>(irrep);
}
else if (sym == "dinfh_abelian") {
string output = "";
char goru = irrep%2 == 0 ? 'g' : 'u';
int lz = max(0,(abs(irrep)-2)/2);
lz *= irrep<0 ? -1 : 1;
output+= boost::lexical_cast<string>(lz);
output+=goru;
symbol = output;
}
else
symbol = "A";
return symbol;
}
int Symmetry::sizeofIrrep(int irrep)
{
return 1;
/*
if (sym == "dinfh")
return irrep > 3 ? 2 : 1;
else if (NonabelianSym)
return nonAbelianGrp.getIrrepSize(irrep);
else
return 1;
*/
}
int Symmetry::negativeof(int irrep)
{
return negativeofAbelian(irrep);
if (sym == "trans") {
std::vector<int> lirrep = decompress(irrep);
for (int i=0; i<lirrep.size(); i++) {
lirrep[i] = lirrep[i] == 0 ? lirrep[i] : (NPROP[i] - lirrep[i]);//%NPROP[i];
if(lirrep[i] >= NPROP[i] || lirrep[i] < 0) {
pout << "cannot find the negative of "<<i<<" component of lirrep "<<lirrep[i]<<endl;
pout << "it is not in the first bruillion zone"<<endl;
exit(0);
}
}
int outirrep = compress(lirrep);
return outirrep;
}
else if (sym == "lzsym") {
return -irrep;
}
else if (sym == "dinfh_abelian") {
if (irrep >= 0 && irrep < 4)
return irrep;
else
return -irrep;
}
else
return irrep;
}
int Symmetry::negativeofAbelian(int irrep)
{
if (groupTable.dim1() == 0) {//this is trans
std::vector<int> lirrep = decompress(irrep);
for (int i=0; i<lirrep.size(); i++) {
lirrep[i] = lirrep[i] == 0 ? lirrep[i] : (NPROP[i] - lirrep[i]);//%NPROP[i];
if(lirrep[i] >= NPROP[i] || lirrep[i] < 0) {
pout << "cannot find the negative of "<<i<<" component of lirrep "<<lirrep[i]<<endl;
pout << "it is not in the first bruillion zone"<<endl;
exit(0);
}
}
int outirrep = compress(lirrep);
return outirrep;
}
else if (groupTable.dim1() == 40) //this is lzsym
return -irrep;
else if (groupTable.dim1() == 41) {//this is dinfh_abelian
if (irrep >= 0 && irrep < 4)
return irrep;
else
return -irrep;
}
else
return irrep;
}
int Symmetry::addAbelian(int irrepl, int irrepr) {
if (groupTable.dim1() == 0) {//this is trans
std::vector<int> lirrep = decompress(irrepl);
std::vector<int> rirrep = decompress(irrepr);
std::vector<int> out(3,0);
out[0] = (lirrep[0]+rirrep[0])%NPROP[0];
out[1] = (lirrep[1]+rirrep[1])%NPROP[1];
out[2] = (lirrep[2]+rirrep[2])%NPROP[2];
int outirrep = compress(out);
return outirrep;
}
else if (groupTable.dim1() == 41) {//this is dinfh_abelian
int goru = ((abs(irrepl)%2==0 && abs(irrepr)%2==0) || (abs(irrepl)%2==1 && abs(irrepr)%2==1)) ? 0 : 1;
if (abs(irrepl) < 4 && abs(irrepr)< 4) {
return groupTable(irrepl, irrepr);
}
else if (abs(irrepl) <4 && abs(irrepr) >= 4) {
int irrepout = 2*(abs(irrepr)/2) + goru;
if (irrepr <0)
return -irrepout;
else
return irrepout;
}
else if (abs(irrepl) >= 4 && abs(irrepr) <4) {
int irrepout = 2*(abs(irrepl)/2) + goru;
if (irrepl <0)
return -irrepout;
else
return irrepout;
}
else {
int irrep1 = 2*abs(abs(irrepl)/2 - abs(irrepr)/2) + goru;
int irrep2 = 2*abs(abs(irrepl)/2 + abs(irrepr)/2) + goru - 2;
int irrep3 = 0;
if (irrep1 >=2) irrep1 += 2;
if (irrepl*irrepr > 0) {
if (irrepl <0)
return -irrep2;
else
return irrep2;
}
else {
if (irrepl + irrepr > 0) {
if (irrep1 >=2 ) return irrep1;
else return abs(irrep1);
}
else {
if (irrep1 >=2 ) return -irrep1;
else return abs(irrep1);
}
}
}
}
else if (groupTable.dim1() == 40) //this is lzsym
return irrepl+irrepr;
else {
return groupTable(irrepl, irrepr);
}
}
std::vector<int> Symmetry::add(int irrepl, int irrepr)
{
return vector<int>(1,addAbelian(irrepl,irrepr));
if (NonabelianSym) {
return nonAbelianGrp.getProduct(irrepl, irrepr);
}
else if (sym == "dinfh") {
std::vector<int> vec;
int goru = ((irrepl%2==0 && irrepr%2==0) || (irrepl%2==1 && irrepr%2==1)) ? 0 : 1;
if (irrepl < 4 && irrepr< 4) {
vec.push_back( groupTable(irrepl, irrepr));
return vec;
}
else if (irrepl <4 && irrepr >= 4) {
vec.push_back(2*abs(irrepr/2) + goru);
return vec;
}
else if (irrepl >= 4 && irrepr <4) {
vec.push_back(2*abs(irrepl/2) + goru);
return vec;
}
else {
int irrep1 = 2*abs(irrepl/2 - irrepr/2) + goru;
int irrep2 = 2*abs(irrepl/2 + irrepr/2) + goru - 2;
if (irrep1 >=2) irrep1 += 2;
vec.push_back(irrep1);
if (irrep1 < 3)
vec.push_back(irrep1+2);
vec.push_back(irrep2);
return vec;
}
}
else if (sym == "dinfh_abelian") {
std::vector<int> vec;
int goru = ((abs(irrepl)%2==0 && abs(irrepr)%2==0) || (abs(irrepl)%2==1 && abs(irrepr)%2==1)) ? 0 : 1;
if (abs(irrepl) < 4 && abs(irrepr)< 4) {
vec.push_back( groupTable(irrepl, irrepr));
return vec;
}
else if (abs(irrepl) <4 && abs(irrepr) >= 4) {
int irrepout = 2*(abs(irrepr)/2) + goru;
if (irrepr <0)
vec.push_back(-irrepout);
else
vec.push_back(irrepout);
return vec;
}
else if (abs(irrepl) >= 4 && abs(irrepr) <4) {
int irrepout = 2*(abs(irrepl)/2) + goru;
if (irrepl <0)
vec.push_back(-irrepout);
else
vec.push_back(irrepout);
return vec;
}
else {
int irrep1 = 2*abs(abs(irrepl)/2 - abs(irrepr)/2) + goru;
int irrep2 = 2*abs(abs(irrepl)/2 + abs(irrepr)/2) + goru - 2;
int irrep3 = 0;
if (irrep1 >=2) irrep1 += 2;
if (irrepl*irrepr > 0) {
if (irrepl <0)
vec.push_back(-irrep2);
else
vec.push_back(irrep2);
}
else {
if (irrepl + irrepr > 0) {
if (irrep1 >=2 ) vec.push_back(irrep1);
else vec.push_back(abs(irrep1));
}
else {
if (irrep1 >=2 ) vec.push_back(-irrep1);
else vec.push_back(abs(irrep1));
}
}
return vec;
}
}
else if (sym == "c1") {
std::vector<int> vec;
vec.push_back(0);
return vec;
}
else if(sym == "lzsym") {
std::vector<int> vec;
vec.push_back(irrepl+irrepr);
return vec;
}
else if (sym == "trans") {
std::vector<int> vec;
std::vector<int> lirrep = decompress(irrepl);
std::vector<int> rirrep = decompress(irrepr);
std::vector<int> out(3,0);
out[0] = (lirrep[0]+rirrep[0])%NPROP[0];
out[1] = (lirrep[1]+rirrep[1])%NPROP[1];
out[2] = (lirrep[2]+rirrep[2])%NPROP[2];
int outirrep = compress(out);
vec.push_back(outirrep);
return vec;
}
else {
std::vector<int> vec;
vec.push_back( groupTable(irrepl, irrepr));
return vec;
}
}
double Symmetry::spatial_sixj(int j1, int j2, int j3, int j5, int j4, int j7) {
if (! (NonabelianSym) ) {
if (j3 != add(j1,j2)[0]) return 0.0;
if (j7 != add(j2,j5)[0]) return 0.0;
if (j4 != add(j3,j5)[0]) return 0.0;
return 1.0;
}
else {
//double out = spatial_ninej(j1, j2, j3, j4, j5, j3, j7, j7, 0);
double out = spatial_ninej(j1, j2, j3, 0, j5, j5, j1, j7, j4);
return out;
}
}
double Symmetry::spatial_ninej(int j1, int j2, int j12, int j3, int j4, int j34, int j13, int j24, int j) {
if (!(NonabelianSym)) {
return 1.0;
}
// all the numbers are irreps
int m = 0; //since 9-j does not depend on m, we use m=j/2 to calculate the coefficient
double out = 0.0;
int m1step = sizeofIrrep(j1);
int m2step = sizeofIrrep(j2);
int m3step = sizeofIrrep(j3);
int m4step = sizeofIrrep(j4);
int m12step = sizeofIrrep(j12);
int m13step = sizeofIrrep(j13);
int m34step = sizeofIrrep(j34);
int m24step = sizeofIrrep(j24);
for (int m1=0;m1<m1step;m1++)
for (int m2=0;m2<m2step;m2++)
for (int m3=0;m3<m3step;m3++)
for (int m4=0;m4<m4step;m4++)
{
double first = 0.0, second = 0.0;
for (int m12=0;m12<m12step;m12++)
for (int m34=0;m34<m34step;m34++)
{
first += spatial_cg(j1, j2, j12, m1, m2, m12) *
spatial_cg(j3, j4, j34, m3, m4, m34) *
spatial_cg(j12, j34, j, m12, m34, m) ;
}
for (int m13=0;m13<m13step;m13++)
for (int m24=0;m24<m24step;m24++)
{
second += spatial_cg(j1, j3, j13, m1, m3, m13) *
spatial_cg(j2, j4, j24, m2, m4, m24) *
spatial_cg(j13, j24, j, m13, m24, m) ;
}
out += first*second;
//pout << m1<<" "<<m2<<" "<<m3<<" "<<m4<<" "<<first<<" "<<second<<" "<<out<<endl;
}
return out;
}
double Symmetry::spatial_cg(int a, int b, int c, int rowa, int rowb, int rowc) {
if (sym == "dinfh") {
if (a<4 && rowa != 0)
{ pout<<"a= "<<a<<" and row = "<<rowa<<endl; exit(0);}
if (b<4 && rowb != 0)
{ pout<<"b= "<<b<<" and row = "<<rowb<<endl; exit(0);}
if (c<4 && rowc != 0)
{ pout<<"c= "<<c<<" and row = "<<rowc<<endl; exit(0);}
int la, lb, lc;
la = (2*rowa-1) * (max(0,a-2))/2;
lb = (2*rowb-1) * (max(0,b-2))/2;
lc = (2*rowc-1) * (max(0,c-2))/2;
//a, b, c, are irreps
// la, lb, lc are z- angular momentums e.g. la = a/2, -a/2
if (a<4 && b<4 && c<4) {
if (c == groupTable(a,b))
return 1.0;
else
return 0.0;
}
double out = 1.0;
if (lc != la+lb)
return 0.0;
if ((a+b+c)%2 != 0 )
return 0.0;
if(lc == la+lb && lc == 0 && la != 0) {
if (c == 0 || c==1 || (c==2&&la>0) || (c==3&&la>0))
out = 1.0/sqrt(2.0);
else
out = -1.0/sqrt(2.0);
}
if (lc <0) {
if (a == 2 || a==3 || b==2 || b==3)
return -1.0;
}
return out;
}
else if (NonabelianSym)
return nonAbelianGrp.getCG(a, b, c, rowa, rowb, rowc);
else {
if (c == add(a,b)[0])
return 1.0;
else
return 0.0;
}
}
}