forked from sanshar/Block
-
Notifications
You must be signed in to change notification settings - Fork 0
/
screen.C
862 lines (761 loc) · 31.6 KB
/
screen.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
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
/*
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 <IntegralMatrix.h>
#include "pario.h"
#include "screen.h"
#include "global.h"
using namespace std;
namespace SpinAdapted{
vector<int, std::allocator<int> > screened_d_indices(const vector<int, std::allocator<int> >& indices,
const vector<int, std::allocator<int> >& interactingix,
const OneElectronArray& onee, const TwoElectronArray& twoe, double thresh) {
dmrginp.dscreen->start();
vector<int, std::allocator<int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(indices.size()));
memset(indsPerthrd[i], 0, indices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < indices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_d_interaction(indices[i], interactingix, onee, twoe, thresh))
indsPerthrd[omprank][i] = 1;
for (int i = 0; i < indices.size(); ++i) {
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i] > 0) {
screened_indices.push_back(indices[i]);
break;
}
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), indices.size());
delete[] indsPerthrd;
dmrginp.dscreen->stop();
return screened_indices;
}
bool screen_d_interaction(int index, const vector<int, std::allocator<int> >& interactingix,
const OneElectronArray& onee, const TwoElectronArray& twoe, double thresh) {
if (NonabelianSym) {
for (int i = 0; i < interactingix.size(); ++i) {
const int ix = interactingix[i];
int xl = index;
for (int ixx = dmrginp.spatial_to_spin(ix); ixx <dmrginp.spatial_to_spin(ix+1); ixx++)
for (int lxx = dmrginp.spatial_to_spin(xl); lxx <dmrginp.spatial_to_spin(xl+1); lxx++)
if (fabs(onee(lxx, ixx)) >= thresh)
return true;
}
for (int i = 0; i < interactingix.size(); ++i)
for (int j = 0; j < interactingix.size(); ++j)
for (int k = 0; k < interactingix.size(); ++k)
{
const int ix = interactingix[i];
const int jx = interactingix[j];
const int kx = interactingix[k];
int xl = index;
for (int ixx = dmrginp.spatial_to_spin(ix); ixx <dmrginp.spatial_to_spin(ix+1); ixx++)
for (int jxx = dmrginp.spatial_to_spin(jx); jxx <dmrginp.spatial_to_spin(jx+1); jxx++)
for (int kxx = dmrginp.spatial_to_spin(kx); kxx <dmrginp.spatial_to_spin(kx+1); kxx++)
for (int lxx = dmrginp.spatial_to_spin(xl); lxx <dmrginp.spatial_to_spin(xl+1); lxx++)
if (fabs(twoe(lxx,ixx,jxx,kxx)) >= thresh)
return true;
}
return (interactingix.size() == 0);
}
else if(dmrginp.spinAdapted()) {
int lxx = dmrginp.spatial_to_spin(index);
for (int i = 0; i < interactingix.size(); ++i) {
const int ix = interactingix[i];
int ixx = dmrginp.spatial_to_spin(ix);
if (fabs(onee(lxx, ixx)) >= thresh)
return true;
}
for (int i = 0; i < interactingix.size(); ++i) {
int ixx = dmrginp.spatial_to_spin(interactingix[i]);
for (int j = 0; j < interactingix.size(); ++j) {
int jxx = dmrginp.spatial_to_spin(interactingix[j]);
for (int k = i; k < interactingix.size(); ++k)
{
int kxx = dmrginp.spatial_to_spin(interactingix[k]);
if (fabs(twoe(lxx,ixx,jxx,kxx)) >= thresh || fabs(twoe(lxx,kxx,jxx,ixx)) >= thresh )
return true;
}
}
}
if(interactingix.size() == 0)
return true;
else
return false;
}
else {
for (int i = 0; i < interactingix.size(); ++i){
const int ix = interactingix[i];
int xl = index;
if (fabs(onee(xl, ix)) >= thresh)
return true;
}
for (int i = 0; i < interactingix.size(); ++i)
for (int j = 0; j < interactingix.size(); ++j)
for (int k = 0; k < interactingix.size(); ++k)
{
const int ix = interactingix[i];
const int jx = interactingix[j];
const int kx = interactingix[k];
int xl = index;
if (fabs(twoe(xl,ix,jx,kx)) >= thresh)
return true;
}
return (interactingix.size() == 0);
}
}
vector<int, std::allocator<int> > screened_cddcomp_indices(const vector<int, std::allocator<int> >& otherindices,
const vector<int, std::allocator<int> >& selfindices,
const OneElectronArray& onee,
const TwoElectronArray& twoe, double thresh)
{
dmrginp.dscreen->start();
vector<int, std::allocator<int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(otherindices.size()));
memset(indsPerthrd[i], 0, otherindices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < otherindices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_cddcomp_interaction(otherindices[i], selfindices, onee, twoe, thresh))
indsPerthrd[omprank][i] = 1;
for (int i=0; i<otherindices.size(); i++) {
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i] > 0) {
screened_indices.push_back(otherindices[i]);
break;
}
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), otherindices.size());
delete[] indsPerthrd;
//pout << "\t\t\tnumber of significant cdd and cdd_comp indices: " << screened_indices.size() << endl;
dmrginp.dscreen->stop();
return screened_indices;
}
bool screen_cddcomp_interaction(int otherindex, const vector<int, std::allocator<int> >& selfindices,
const OneElectronArray& onee,
const TwoElectronArray& twoe, double thresh)
{
if(!dmrginp.spinAdapted()) {
for (int i = 0; i < selfindices.size(); ++i)
{
const int ix = selfindices[i];
int lx = otherindex;
if (fabs(onee(lx, ix)) >= thresh)
return true;
}
for (int i = 0; i < selfindices.size(); ++i)
for (int j = 0; j < selfindices.size(); ++j)
for (int k = 0; k < selfindices.size(); ++k)
{
const int ix = selfindices[i];
const int jx = selfindices[j];
const int kx = selfindices[k];
int lx = otherindex;
if (fabs(twoe(lx,ix,jx,kx)) >= thresh)
return true;
}
return (selfindices.size() == 0);
}
else if (NonabelianSym) {
for (int i = 0; i < selfindices.size(); ++i)
{
const int ix = selfindices[i];
int xl = otherindex;
for (int ixx = dmrginp.spatial_to_spin(ix); ixx <dmrginp.spatial_to_spin(ix+1); ixx++)
for (int lxx = dmrginp.spatial_to_spin(xl); lxx <dmrginp.spatial_to_spin(xl+1); lxx++) {
if (fabs(onee(lxx, ixx)) >= thresh)
return true;
}
}
for (int i = 0; i < selfindices.size(); ++i)
for (int j = 0; j < selfindices.size(); ++j)
for (int k = 0; k < selfindices.size(); ++k)
{
const int ix = selfindices[i];
const int jx = selfindices[j];
const int kx = selfindices[k];
int xl = otherindex;
for (int ixx = dmrginp.spatial_to_spin(ix); ixx <dmrginp.spatial_to_spin(ix+1); ixx++)
for (int jxx = dmrginp.spatial_to_spin(jx); jxx <dmrginp.spatial_to_spin(jx+1); jxx++)
for (int kxx = dmrginp.spatial_to_spin(kx); kxx <dmrginp.spatial_to_spin(kx+1); kxx++)
for (int lxx = dmrginp.spatial_to_spin(xl); lxx <dmrginp.spatial_to_spin(xl+1); lxx++)
if (fabs(twoe(lxx,ixx,jxx,kxx)) >= thresh)
return true;
}
return (selfindices.size() == 0);
}
else {
int lxx = dmrginp.spatial_to_spin(otherindex);
for (int i = 0; i < selfindices.size(); ++i)
{
const int ix = selfindices[i];
int ixx = dmrginp.spatial_to_spin(ix);
if (fabs(onee(lxx, ixx)) >= thresh)
return true;
}
for (int i = 0; i < selfindices.size(); ++i) {
int ixx = dmrginp.spatial_to_spin(selfindices[i]);
for (int j = 0; j < selfindices.size(); ++j) {
int jxx = dmrginp.spatial_to_spin(selfindices[j]);
for (int k = i; k < selfindices.size(); ++k)
{
int kxx = dmrginp.spatial_to_spin(selfindices[k]);
if (fabs(twoe(lxx,ixx,jxx,kxx)) >= thresh || fabs(twoe(jxx,ixx,lxx,kxx)) >= thresh)
return true;
}
}
}
return (selfindices.size() == 0);
}
}
/**
* from a list of (sorted) indices in a given block
* returns the screened pair indices for the operators
* cd and cdcomp that
* interact
* with the other block indices (interactingix)
*/
vector<pair<int, int> > screened_cd_indices(const vector<int, std::allocator<int> >& indices,
const vector<int, std::allocator<int> >& interactingix,
const TwoElectronArray& twoe, double thresh)
{
dmrginp.cdscreen->start();
vector<pair<int, int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(indices.size()*indices.size()));
memset(indsPerthrd[i], 0, indices.size()*indices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < indices.size(); ++i)
for (int j = 0; j <= i; ++j)
if (dmrginp.use_partial_two_integrals() || screen_cd_interaction(indices[i], indices[j], interactingix, twoe, thresh))
indsPerthrd[omprank][i*indices.size()+j] = 1;
for (int i = 0; i < indices.size(); ++i)
for (int j = 0; j <= i; ++j)
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i*indices.size()+j] > 0) {
screened_indices.push_back(make_pair(indices[i], indices[j]));
break;
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), indices.size()*indices.size());
delete[] indsPerthrd;
dmrginp.cdscreen->stop();
return screened_indices;
}
/**
* from a list of (sorted) indices in a given block
* returns the screened pair indices for the operators
* dd and ddcomp that
* interact
* with the other block indices (interactingix)
*/
vector<pair<int, int> > screened_dd_indices(const vector<int, std::allocator<int> >& indices,
const vector<int, std::allocator<int> >& interactingix,
const TwoElectronArray& twoe, double thresh)
{
dmrginp.ddscreen->start();
vector<pair<int, int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(indices.size()*indices.size()));
memset(indsPerthrd[i], 0, indices.size()*indices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < indices.size(); ++i)
for (int j = 0; j <= i; ++j)
if (dmrginp.use_partial_two_integrals() || screen_dd_interaction(indices[i], indices[j], interactingix, twoe, thresh))
indsPerthrd[omprank][i*indices.size()+j] = 1;
for (int i = 0; i < indices.size(); ++i)
for (int j = 0; j <= i; ++j)
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i*indices.size()+j] > 0) {
screened_indices.push_back(make_pair(indices[i], indices[j]));
break;
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), indices.size()*indices.size());
delete[] indsPerthrd;
dmrginp.ddscreen->stop();
return screened_indices;
}
/**
* given two indices i and j, determine
* whether we should build c+i dj
* or the complementary operator for c+i dj
* by looking at the integrals of the complementary
* operator
* interactingix are the indices that we are summing over
* (i.e. the indices in the block that we are interacting with)
*/
bool screen_cd_interaction(int ci, int dj, const vector<int, std::allocator<int> >& interactingix,
const TwoElectronArray& twoe, double thresh)
{
if (NonabelianSym) {
int ninter = interactingix.size();
for (int k = 0; k < ninter; ++k)
for (int l = 0; l < ninter; ++l)
{
int xk = interactingix[k];
int xl = interactingix[l];
for (int cix = dmrginp.spatial_to_spin(ci); cix <dmrginp.spatial_to_spin(ci+1); cix++)
for (int djx = dmrginp.spatial_to_spin(dj); djx <dmrginp.spatial_to_spin(dj+1); djx++)
for (int kxx = dmrginp.spatial_to_spin(xk); kxx <dmrginp.spatial_to_spin(xk+1); kxx++)
for (int lxx = dmrginp.spatial_to_spin(xl); lxx <dmrginp.spatial_to_spin(xl+1); lxx++)
if (fabs(twoe(cix, kxx, lxx, djx))>=thresh || fabs(twoe(kxx, cix, lxx, djx)) >= thresh)
return true; // there is a significant integral joining the two regions
}
return (ninter == 0);
}
else if (dmrginp.spinAdapted()) {
int ninter = interactingix.size();
double twoeterm = 0.;
int cix = dmrginp.spatial_to_spin(ci);
int djx = dmrginp.spatial_to_spin(dj);
for (int k = 0; k < ninter; ++k) {
int kxx = dmrginp.spatial_to_spin(interactingix[k]);
for (int l = 0; l < ninter; ++l)
{
int lxx = dmrginp.spatial_to_spin(interactingix[l]);
//if (fabs(twoe(cix, kxx, lxx, djx))>=thresh || fabs(twoe(kxx, cix, lxx, djx)) >= thresh)
if (fabs(twoe(kxx, cix, djx, lxx))>=thresh || fabs(twoe(cix, kxx, djx, lxx)) >= thresh) {
//pout << ci<<" "<<dj<<" -> "<<kxx<<" "<<lxx<<" "<<twoe(kxx, cix, djx, lxx)<<" "<<twoe(cix, kxx, djx, lxx)<<" "<<thresh<<endl;
return true; // there is a significant integral joining the two regions
}
}
}
return (ninter == 0);
}
else {
int ninter = interactingix.size();
for (int k = 0; k < ninter; ++k)
for (int l = 0; l < ninter; ++l)
{
int kx = interactingix[k];
int lx = interactingix[l];
if (fabs(twoe(ci, kx, lx, dj))>=thresh || fabs(twoe(kx, ci, lx, dj)) >= thresh)
return true; // there is a significant integral joining the two regions
}
return (ninter == 0);
}
}
bool screen_dd_interaction(int ci, int cj, const vector<int, std::allocator<int> >& interactingix,
const TwoElectronArray& twoe, double thresh)
{
if (NonabelianSym) {
int ninter = interactingix.size();
for (int k = 0; k < ninter; ++k)
for (int l = 0; l < ninter; ++l)
{
int xk = interactingix[k];
int xl = interactingix[l];
for (int cix = dmrginp.spatial_to_spin(ci); cix <dmrginp.spatial_to_spin(ci+1); cix++)
for (int cjx = dmrginp.spatial_to_spin(cj); cjx <dmrginp.spatial_to_spin(cj+1); cjx++)
for (int kxx = dmrginp.spatial_to_spin(xk); kxx <dmrginp.spatial_to_spin(xk+1); kxx++)
for (int lxx = dmrginp.spatial_to_spin(xl); lxx <dmrginp.spatial_to_spin(xl+1); lxx++)
if (fabs(twoe(cix, cjx, kxx, lxx))>=thresh)
return true; // there is a significant integral joining the two regions
}
return (ninter == 0);
}
else if(dmrginp.spinAdapted()) {
int ninter = interactingix.size();
int cix = dmrginp.spatial_to_spin(ci);
int cjx = dmrginp.spatial_to_spin(cj);
for (int k = 0; k < ninter; ++k) {
int kxx = dmrginp.spatial_to_spin(interactingix[k]);
for (int l = 0; l < ninter; ++l)
{
int lxx = dmrginp.spatial_to_spin(interactingix[l]);
if (fabs(twoe(cix, cjx, kxx, lxx))>=thresh)
return true; // there is a significant integral joining the two regions
}
}
return (ninter == 0);
}
else {
if(ci==cj) return false;
int ninter = interactingix.size();
for (int k = 0; k < ninter; ++k)
for (int l = 0; l < ninter; ++l)
{
int kx = interactingix[k];
int lx = interactingix[l];
if (fabs(twoe(ci, cj, kx, lx))>=thresh)
return true; // there is a significant integral joining the two regions
}
return (ninter == 0);
}
}
// these are for BCS type calculations
std::vector<int, std::allocator<int> > screened_d_indices(const std::vector<int, std::allocator<int> >& indices, const std::vector<int, std::allocator<int> >& interactingix, const OneElectronArray& onee, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
vector<int, std::allocator<int> > screened_indices;
for (int i = 0; i < indices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_d_interaction(indices[i], interactingix, onee, twoe, vcc, vcccc, vcccd, thresh))
screened_indices.push_back(indices[i]);
return screened_indices;
}
bool screen_d_interaction(int index, const std::vector<int, std::allocator<int> >& interactingix, const OneElectronArray& onee, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
if (dmrginp.spinAdapted()) {
pout << "BCS with spin adaption not implemented!" << endl;
abort();
} else {
for (int i = 0; i < interactingix.size(); ++i) {
const int ix = interactingix[i];
int xl = index;
if (fabs(onee(xl, ix)) >= thresh || fabs(vcc(xl, ix)) >= thresh || fabs(vcc(ix, xl)) >= thresh)
return true;
}
for (int i = 0; i < interactingix.size(); ++i)
for (int j = 0; j < interactingix.size(); ++j)
for (int k = 0; k < interactingix.size(); ++k) {
const int ix = interactingix[i];
const int jx = interactingix[j];
const int kx = interactingix[k];
int xl = index;
if (fabs(twoe(xl, ix, jx, kx)) >= thresh || fabs(vcccd(xl, ix, jx, kx)) >= thresh || fabs(vcccd(ix, jx, kx, xl)) > thresh || fabs(vcccc(xl, ix, jx, kx)) > thresh)
return true;
}
return (interactingix.size() == 0);
}
}
std::vector<std::pair<int, int> > screened_cd_indices(const std::vector<int, std::allocator<int> >& indices, const std::vector<int, std::allocator<int> >& interactingix, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
vector<pair<int, int> > screened_indices;
for (int i = 0; i < indices.size(); ++i) {
for (int j = 0; j <= i; ++j)
if (dmrginp.use_partial_two_integrals() || screen_cd_interaction(indices[i], indices[j], interactingix, twoe, vcc, vcccc, vcccd, thresh))
screened_indices.push_back(make_pair(indices[i], indices[j]));
}
return screened_indices;
}
bool screen_cd_interaction(int ci, int dj, const std::vector<int, std::allocator<int> >& interactingix, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
if (dmrginp.spinAdapted()) {
pout << "BCS with spin adaption not implemented!" << endl;
abort();
} else {
int ninter = interactingix.size();
for (int k = 0; k < ninter; ++k)
for (int l = 0; l < ninter; ++l) {
int kx = interactingix[k];
int lx = interactingix[l];
if (fabs(twoe(ci, kx, lx, dj))>= thresh || fabs(twoe(kx, ci, lx, dj)) >= thresh || fabs(vcccd(ci, kx, lx, dj)) >= thresh || fabs(vcccd(dj, kx, lx, ci)) >= thresh)
return true;
}
return (ninter == 0);
}
}
std::vector<std::pair<int, int> > screened_dd_indices(const std::vector<int, std::allocator<int> >& indices, const std::vector<int, std::allocator<int> >& interactingix, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
vector<pair<int, int> > screened_indices;
for (int i = 0; i < indices.size(); ++i)
for (int j = 0; j <= i; ++j)
if (dmrginp.use_partial_two_integrals() || screen_dd_interaction(indices[i], indices[j], interactingix, twoe, vcc, vcccc, vcccd, thresh))
screened_indices.push_back(make_pair(indices[i], indices[j]));
return screened_indices;
}
bool screen_dd_interaction(int ci, int cj, const std::vector<int, std::allocator<int> >& interactingix, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
if (dmrginp.spinAdapted()) {
pout << "BCS with spin adaption not implemented!" << endl;
abort();
} else {
int ninter = interactingix.size();
for (int k = 0; k < ninter; ++k)
for (int l = 0; l < ninter; ++l) {
int kx = interactingix[k];
int lx = interactingix[l];
if (fabs(twoe(ci, cj, kx, lx))>=thresh || fabs(vcccd(ci, cj, kx, lx)) >= thresh || fabs(vcccc(ci, cj, kx, lx)) >= thresh)
return true;
}
return (ninter == 0);
}
}
std::vector<int, std::allocator<int> > screened_cddcomp_indices(const std::vector<int, std::allocator<int> >& otherindices, const std::vector<int, std::allocator<int> >& selfindices, const OneElectronArray& onee, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
vector<int, std::allocator<int> > screened_indices;
for (int i = 0; i < otherindices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_cddcomp_interaction(otherindices[i], selfindices, onee, twoe, vcc, vcccc, vcccd, thresh))
screened_indices.push_back(otherindices[i]);
//pout << "\t\t\tnumber of significant cdd and cdd_comp indices: " << screened_indices.size() << endl;
return screened_indices;
}
bool screen_cddcomp_interaction(int otherindex, const std::vector<int, std::allocator<int> >& selfindices, const OneElectronArray& onee, const TwoElectronArray& twoe, const PairArray& vcc, const CCCCArray& vcccc, const CCCDArray& vcccd, double thresh) {
if (dmrginp.spinAdapted()) {
pout << "BCS with spin adaption not implemented!" << endl;
abort();
} else {
for (int i = 0; i < selfindices.size(); ++i) {
const int ix = selfindices[i];
int lx = otherindex;
if (fabs(onee(lx, ix)) >= thresh || fabs(vcc(lx, ix)) >= thresh || fabs(vcc(ix, lx)) >= thresh)
return true;
}
for (int i = 0; i < selfindices.size(); ++i)
for (int j = 0; j < selfindices.size(); ++j)
for (int k = 0; k < selfindices.size(); ++k) {
const int ix = selfindices[i];
const int jx = selfindices[j];
const int kx = selfindices[k];
int lx = otherindex;
if (fabs(twoe(lx, ix, jx, kx)) >= thresh || fabs(vcccd(lx, ix, jx, kx)) >= thresh || fabs(vcccd(ix, jx, kx, lx)) > thresh || fabs(vcccc(lx, ix, jx, kx)) > thresh)
return true;
}
return (selfindices.size() == 0);
}
}
vector<int, std::allocator<int> > screened_ccd_c_indices(const vector<int, std::allocator<int> >& indices,
const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
dmrginp.dscreen->start();
vector<int, std::allocator<int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(indices.size()));
memset(indsPerthrd[i], 0, indices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < indices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_ccd_c_interaction(indices[i], interactingix, external_orb, onee, twoe, thresh))
indsPerthrd[omprank][i] = 1;
for (int i = 0; i < indices.size(); ++i) {
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i] > 0) {
screened_indices.push_back(indices[i]);
break;
}
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), indices.size());
delete[] indsPerthrd;
//pout << "\t\t\tnumber of significant d and d_comp indices: " << screened_indices.size() << endl;
dmrginp.dscreen->stop();
return screened_indices;
}
vector<int, std::allocator<int> > screened_ccd_d_indices(const vector<int, std::allocator<int> >& indices,
const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
dmrginp.dscreen->start();
vector<int, std::allocator<int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(indices.size()));
memset(indsPerthrd[i], 0, indices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < indices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_ccd_d_interaction(indices[i], interactingix, external_orb, onee, twoe, thresh))
indsPerthrd[omprank][i] = 1;
for (int i = 0; i < indices.size(); ++i) {
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i] > 0) {
screened_indices.push_back(indices[i]);
break;
}
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), indices.size());
delete[] indsPerthrd;
dmrginp.dscreen->stop();
return screened_indices;
}
vector<int, std::allocator<int> > screened_cdd_c_indices(const vector<int, std::allocator<int> >& indices,
const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
dmrginp.dscreen->start();
vector<int, std::allocator<int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(indices.size()));
memset(indsPerthrd[i], 0, indices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < indices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_cdd_c_interaction(indices[i], interactingix, external_orb, onee, twoe, thresh))
indsPerthrd[omprank][i] = 1;
for (int i = 0; i < indices.size(); ++i) {
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i] > 0) {
screened_indices.push_back(indices[i]);
break;
}
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), indices.size());
delete[] indsPerthrd;
//pout << "\t\t\tnumber of significant d and d_comp indices: " << screened_indices.size() << endl;
dmrginp.dscreen->stop();
return screened_indices;
}
vector<int, std::allocator<int> > screened_cdd_d_indices(const vector<int, std::allocator<int> >& indices,
const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
dmrginp.dscreen->start();
vector<int, std::allocator<int> > screened_indices;
long** indsPerthrd = new long* [numthrds];
for (int i=0; i<numthrds; i++) {
indsPerthrd[i] = reinterpret_cast<long*>(Stackmem[0].allocate(indices.size()));
memset(indsPerthrd[i], 0, indices.size()*sizeof(long));
}
#pragma omp parallel for
for (int i = 0; i < indices.size(); ++i)
if (dmrginp.use_partial_two_integrals() || screen_cdd_d_interaction(indices[i], interactingix, external_orb, onee, twoe, thresh))
indsPerthrd[omprank][i] = 1;
for (int i = 0; i < indices.size(); ++i) {
for (int thrd=0; thrd<numthrds; thrd++)
if (indsPerthrd[thrd][i] > 0) {
screened_indices.push_back(indices[i]);
break;
}
}
for (int i=numthrds-1; i>-1; i--)
Stackmem[0].deallocate(reinterpret_cast<double*>(indsPerthrd[i]), indices.size());
delete[] indsPerthrd;
//pout << "\t\t\tnumber of significant d and d_comp indices: " << screened_indices.size() << endl;
dmrginp.dscreen->stop();
return screened_indices;
}
bool screen_cdd_c_interaction(int index, const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
if(dmrginp.spinAdapted()) {
int lx = dmrginp.spatial_to_spin(index);
int jx = dmrginp.spatial_to_spin(external_orb);
for (int i = 0; i < interactingix.size(); ++i) {
int ix = dmrginp.spatial_to_spin(interactingix[i]);
for (int k = 0; k < interactingix.size(); ++k)
{
int kx = dmrginp.spatial_to_spin(interactingix[k]);
if (fabs(twoe(jx,lx,ix,kx)) >= thresh)
return true;
}
}
return (interactingix.size() == 0);
}
else {
const int jx = external_orb;
int lx = index;
for (int i = 0; i < interactingix.size(); ++i)
for (int k = 0; k < interactingix.size(); ++k)
{
const int ix = interactingix[i];
const int kx = interactingix[k];
if (fabs(twoe(jx,lx,ix,kx)) >= thresh)
return true;
}
return (interactingix.size() == 0);
}
}
bool screen_cdd_d_interaction(int index, const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
if(dmrginp.spinAdapted()) {
int lx = dmrginp.spatial_to_spin(index);
int jx = dmrginp.spatial_to_spin(external_orb);
if (fabs(onee(jx, lx)) >= thresh)
return true;
for (int i = 0; i < interactingix.size(); ++i) {
int ix = dmrginp.spatial_to_spin(interactingix[i]);
for (int k = 0; k < interactingix.size(); ++k)
{
int kx = dmrginp.spatial_to_spin(interactingix[k]);
if (fabs(twoe(jx,ix,lx,kx)) >= thresh)
return true;
if (fabs(twoe(jx,ix,kx,lx)) >= thresh)
return true;
}
}
return (interactingix.size() == 0);
}
else {
const int jx = external_orb;
int lx = index;
if (fabs(onee(jx, lx)) >= thresh)
return true;
for (int i = 0; i < interactingix.size(); ++i)
for (int k = 0; k < interactingix.size(); ++k)
{
const int ix = interactingix[i];
const int kx = interactingix[k];
if (fabs(twoe(jx,ix,kx,lx)) >= thresh)
return true;
if (fabs(twoe(jx,ix,lx,kx)) >= thresh)
return true;
}
return (interactingix.size() == 0);
}
}
bool screen_ccd_c_interaction(int index, const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
if(dmrginp.spinAdapted()) {
int lx = dmrginp.spatial_to_spin(index);
int jx = dmrginp.spatial_to_spin(external_orb);
if (fabs(onee(lx, jx)) >= thresh)
return true;
for (int i = 0; i < interactingix.size(); ++i) {
int ix = dmrginp.spatial_to_spin(interactingix[i]);
for (int k = 0; k < interactingix.size(); ++k)
{
int kx = dmrginp.spatial_to_spin(interactingix[k]);
if (fabs(twoe(lx,ix,jx,kx)) >= thresh)
return true;
if (fabs(twoe(ix,lx,jx,kx)) >= thresh)
return true;
}
}
return (interactingix.size() == 0);
}
else {
const int jx = external_orb;
int lx = index;
if (fabs(onee(lx, jx)) >= thresh)
return true;
for (int i = 0; i < interactingix.size(); ++i)
for (int k = 0; k < interactingix.size(); ++k)
{
const int ix = interactingix[i];
const int kx = interactingix[k];
if (fabs(twoe(lx,ix,jx,kx)) >= thresh)
return true;
if (fabs(twoe(ix,lx,jx,kx)) >= thresh)
return true;
}
return (interactingix.size() == 0);
}
}
bool screen_ccd_d_interaction(int index, const vector<int, std::allocator<int> >& interactingix, int external_orb,
const OneElectronArray& onee, const PerturbTwoElectronArray& twoe, double thresh) {
if(dmrginp.spinAdapted()) {
int lx = dmrginp.spatial_to_spin(index);
int jx = dmrginp.spatial_to_spin(external_orb);
for (int i = 0; i < interactingix.size(); ++i) {
int ix = dmrginp.spatial_to_spin(interactingix[i]);
for (int k = 0; k < interactingix.size(); ++k)
{
int kx = dmrginp.spatial_to_spin(interactingix[k]);
if (fabs(twoe(ix,kx,jx,lx)) >= thresh)
return true;
}
}
return (interactingix.size() == 0);
}
else {
const int jx = external_orb;
int lx = index;
for (int i = 0; i < interactingix.size(); ++i)
for (int k = 0; k < interactingix.size(); ++k)
{
const int ix = interactingix[i];
const int kx = interactingix[k];
if (fabs(twoe(ix,kx,jx,lx)) >= thresh)
return true;
}
return (interactingix.size() == 0);
}
}
} // namespace SpinAdapted