-
Notifications
You must be signed in to change notification settings - Fork 0
/
output_h2o.txt
3150 lines (3148 loc) · 270 KB
/
output_h2o.txt
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
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
h2o_48
+00:00:00,271 read_FCIdump.cpp : 179 : info : Sparse
+00:00:00,271 read_FCIdump.cpp : 182 : info : Sparse
+00:00:01,183 BuildHamiltonian.cpp : 48 : info : -7.45456
+00:00:00,003 BuildPrecon.cpp : 86 : info : 24
+00:00:00,003 BuildPrecon.cpp : 87 : info : { -1.32481, -1.32481, -0.567189, -0.567189, 0.217852, 0.217852, 0.862217, 0.862217, 1.0803, 1.0803, 1.48633, 1.48633, 1.75369, 1.75369, 2.51002, 2.51002, 3.47608, 3.47608, 3.79242, 3.79242, 43.3538, 43.3538, -0.499397, -0.499397, 0.868776, 0.868776, 1.78253, 1.78253, 3.27498, 3.27498, -0.6882, -0.6882, 0.303646, 0.303646, 0.907071, 0.907071, 1.11991, 1.11991, 1.99214, 1.99214, 2.4899, 2.4899, 4.07867, 4.07867, 1.58348, 1.58348, 3.33662, 3.33662, }
+00:00:00,003 BuildPrecon.cpp : 100 : info : 14.1592
+00:00:00,003 BuildPrecon.cpp : 108 : info : sum = 25
+00:00:00,003 BuildPrecon.cpp : 109 : info : rest_shift = 0.27102
+00:00:00,003 BuildPrecon.cpp : 219 : info : a = 18.8408 b = 185.541 R = 9.84782
+00:00:00,004 BuildPrecon.cpp : 220 : info : a_v = { 1.4291, } b_v = { 0.446493, }
+00:00:00,004 BuildPrecon.cpp : 221 : info : a = 0.0173498 b = 0.00652956
+00:00:00,004 BuildPrecon.cpp : 222 : info : a = 0.0554131 b = 0.0404299
+00:00:00,004 BuildPrecon.cpp : 223 : info : a = 0.156243 b = 0.136934
+00:00:00,004 BuildPrecon.cpp : 224 : info : a = 0.0758513 b = 0.0236982
+00:00:00,004 BuildPrecon.cpp : 225 : info : a = 6.06554e-312 b = 6.06554e-312
+00:00:00,004 BuildPrecon.cpp : 226 : info : a = 0 b = 0
+00:00:00,004 BuildPrecon.cpp : 232 : info : 0.0758513 0.0236982
+00:00:00,004 BuildPrecon.cpp : 117 : info : { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, }
+00:00:00,006 BuildPrecon.cpp : 129 : info : Approximation error = 6683324.1853
+00:00:00,006 BuildPrecon.cpp : 135 : info : Test Inv 1
+00:00:00,038 BuildPrecon.cpp : 152 : info : Fock = 32.0168 Fock inv= 0.0355178 prod= 1.13717
+00:00:00,070 BuildPrecon.cpp : 152 : info : Fock = 75.3104 Fock inv= 0.0127312 prod= 0.958793
+00:00:00,102 BuildPrecon.cpp : 152 : info : Fock = 33.7392 Fock inv= 0.0340973 prod= 1.15041
+00:00:00,133 BuildPrecon.cpp : 152 : info : Fock = 40.1374 Fock inv= 0.0293001 prod= 1.17603
+00:00:00,165 BuildPrecon.cpp : 152 : info : Fock = 25 Fock inv= 0.0419434 prod= 1.04858
+00:00:00,003 BuildPrecon.cpp : 86 : info : 24
+00:00:00,003 BuildPrecon.cpp : 87 : info : { -1.32481, -1.32481, -0.567189, -0.567189, 0.217852, 0.217852, 0.862217, 0.862217, 1.0803, 1.0803, 1.48633, 1.48633, 1.75369, 1.75369, 2.51002, 2.51002, 3.47608, 3.47608, 3.79242, 3.79242, 43.3538, 43.3538, -0.499397, -0.499397, 0.868776, 0.868776, 1.78253, 1.78253, 3.27498, 3.27498, -0.6882, -0.6882, 0.303646, 0.303646, 0.907071, 0.907071, 1.11991, 1.11991, 1.99214, 1.99214, 2.4899, 2.4899, 4.07867, 4.07867, 1.58348, 1.58348, 3.33662, 3.33662, }
+00:00:00,003 BuildPrecon.cpp : 100 : info : 14.1592
+00:00:00,003 BuildPrecon.cpp : 108 : info : sum = 25
+00:00:00,003 BuildPrecon.cpp : 109 : info : rest_shift = 0.27102
+00:00:00,003 BuildPrecon.cpp : 219 : info : a = 18.8408 b = 185.541 R = 9.84782
+00:00:00,003 BuildPrecon.cpp : 220 : info : a_v = { 0.512344, 2.29531, } b_v = { 0.183443, 1.39889, }
+00:00:00,003 BuildPrecon.cpp : 221 : info : a = 0.0173498 b = 0.00652956
+00:00:00,003 BuildPrecon.cpp : 222 : info : a = 0.0554131 b = 0.0404299
+00:00:00,003 BuildPrecon.cpp : 223 : info : a = 0.156243 b = 0.136934
+00:00:00,003 BuildPrecon.cpp : 224 : info : a = 0.0271933 b = 0.00973648
+00:00:00,003 BuildPrecon.cpp : 225 : info : a = 0.121827 b = 0.0742477
+00:00:00,003 BuildPrecon.cpp : 226 : info : a = 0 b = 0
+00:00:00,003 BuildPrecon.cpp : 232 : info : 0.0271933 0.00973648
+00:00:00,003 BuildPrecon.cpp : 232 : info : 0.121827 0.0742477
+00:00:00,004 BuildPrecon.cpp : 117 : info : { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }
+00:00:00,006 BuildPrecon.cpp : 129 : info : Approximation error = 546125.027433
+00:00:00,006 BuildPrecon.cpp : 135 : info : Test Inv 1
+00:00:00,038 BuildPrecon.cpp : 152 : info : Fock = 32.0168 Fock inv= 0.0312174 prod= 0.999481
+00:00:00,070 BuildPrecon.cpp : 152 : info : Fock = 75.3104 Fock inv= 0.0135164 prod= 1.01792
+00:00:00,102 BuildPrecon.cpp : 152 : info : Fock = 33.7392 Fock inv= 0.0295289 prod= 0.996283
+00:00:00,133 BuildPrecon.cpp : 152 : info : Fock = 40.1374 Fock inv= 0.024584 prod= 0.986738
+00:00:00,165 BuildPrecon.cpp : 152 : info : Fock = 25 Fock inv= 0.0403556 prod= 1.00889
+00:00:00,003 BuildPrecon.cpp : 86 : info : 24
+00:00:00,003 BuildPrecon.cpp : 87 : info : { -1.32481, -1.32481, -0.567189, -0.567189, 0.217852, 0.217852, 0.862217, 0.862217, 1.0803, 1.0803, 1.48633, 1.48633, 1.75369, 1.75369, 2.51002, 2.51002, 3.47608, 3.47608, 3.79242, 3.79242, 43.3538, 43.3538, -0.499397, -0.499397, 0.868776, 0.868776, 1.78253, 1.78253, 3.27498, 3.27498, -0.6882, -0.6882, 0.303646, 0.303646, 0.907071, 0.907071, 1.11991, 1.11991, 1.99214, 1.99214, 2.4899, 2.4899, 4.07867, 4.07867, 1.58348, 1.58348, 3.33662, 3.33662, }
+00:00:00,003 BuildPrecon.cpp : 100 : info : 14.1592
+00:00:00,003 BuildPrecon.cpp : 108 : info : sum = 25
+00:00:00,003 BuildPrecon.cpp : 109 : info : rest_shift = 0.27102
+00:00:00,003 BuildPrecon.cpp : 219 : info : a = 18.8408 b = 185.541 R = 9.84782
+00:00:00,003 BuildPrecon.cpp : 220 : info : a_v = { 0.326885, 1.04403, 2.94375, } b_v = { 0.123022, 0.761732, 2.57995, }
+00:00:00,003 BuildPrecon.cpp : 221 : info : a = 0.0173498 b = 0.00652956
+00:00:00,003 BuildPrecon.cpp : 222 : info : a = 0.0554131 b = 0.0404299
+00:00:00,003 BuildPrecon.cpp : 223 : info : a = 0.156243 b = 0.136934
+00:00:00,003 BuildPrecon.cpp : 224 : info : a = 0.0173498 b = 0.00652956
+00:00:00,003 BuildPrecon.cpp : 225 : info : a = 0.0554131 b = 0.0404299
+00:00:00,003 BuildPrecon.cpp : 226 : info : a = 0.156243 b = 0.136934
+00:00:00,003 BuildPrecon.cpp : 232 : info : 0.0173498 0.00652956
+00:00:00,004 BuildPrecon.cpp : 232 : info : 0.0554131 0.0404299
+00:00:00,004 BuildPrecon.cpp : 232 : info : 0.156243 0.136934
+00:00:00,004 BuildPrecon.cpp : 117 : info : { 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, }
+00:00:00,007 BuildPrecon.cpp : 129 : info : Approximation error = 34582.6673147
+00:00:00,007 BuildPrecon.cpp : 135 : info : Test Inv 1
+00:00:00,038 BuildPrecon.cpp : 152 : info : Fock = 32.0168 Fock inv= 0.0312117 prod= 0.999298
+00:00:00,070 BuildPrecon.cpp : 152 : info : Fock = 75.3104 Fock inv= 0.0132537 prod= 0.998137
+00:00:00,101 BuildPrecon.cpp : 152 : info : Fock = 33.7392 Fock inv= 0.0296233 prod= 0.999466
+00:00:00,132 BuildPrecon.cpp : 152 : info : Fock = 40.1374 Fock inv= 0.0249268 prod= 1.0005
+00:00:00,164 BuildPrecon.cpp : 152 : info : Fock = 25 Fock inv= 0.0399981 prod= 0.999954
+00:00:00,157 RunDmrg.cpp : 41 : info : The ranks of H are { 99, 104, 113, 126, 143, 164, 189, 218, 251, 288, 329, 374, 423, 476, 533, 594, 659, 728, 801, 878, 959, 1044, 1133, 1226, 1133, 1044, 959, 878, 801, 728, 659, 594, 533, 476, 423, 374, 329, 288, 251, 218, 189, 164, 143, 126, 113, 104, 99, }
+00:00:00,157 RunDmrg.cpp : 48 : info : nuc -52.419060
+00:00:00,191 RunDmrg.cpp : 202 : info : A = { 99, 104, 113, 126, 143, 164, 189, 218, 251, 288, 329, 374, 423, 476, 533, 594, 659, 728, 801, 878, 959, 1044, 1133, 1226, 1133, 1044, 959, 878, 801, 728, 659, 594, 533, 476, 423, 374, 329, 288, 251, 218, 189, 164, 143, 126, 113, 104, 99, }
+00:00:00,689 RunDmrg.cpp : 287 : simpleMALS : Iteration: 0 Eigenvalue -13.8896 -66.30864735034639
+00:00:00,689 RunDmrg.cpp : 288 : simpleMALS : Ranks: { 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, }
+00:00:01,225 RunDmrg.cpp : 287 : simpleMALS : Iteration: 1 Eigenvalue -23.1225 -75.54158901425306
+00:00:01,225 RunDmrg.cpp : 288 : simpleMALS : Ranks: { 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, }
+00:00:01,772 RunDmrg.cpp : 287 : simpleMALS : Iteration: 2 Eigenvalue -23.4065 -75.82557512603029
+00:00:01,772 RunDmrg.cpp : 288 : simpleMALS : Ranks: { 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, }
+00:00:02,317 RunDmrg.cpp : 287 : simpleMALS : Iteration: 3 Eigenvalue -23.6504 -76.06941221891516
+00:00:02,317 RunDmrg.cpp : 288 : simpleMALS : Ranks: { 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, }
+00:00:02,865 RunDmrg.cpp : 287 : simpleMALS : Iteration: 4 Eigenvalue -23.6564 -76.07545597398746
+00:00:02,865 RunDmrg.cpp : 288 : simpleMALS : Ranks: { 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, }
+00:00:02,870 RunDmrg.cpp : 77 : info : The ranks of phi are { 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, }
+00:00:02,870 RunDmrg.cpp : 78 : info : Size of Solution 826
+00:00:02,870 RunDmrg.cpp : 80 : info : Final Energy = -76.07545597398746
+00:00:00,157 PPGD_CG.cpp : 33 : info : The ranks of H are { 99, 104, 113, 126, 143, 164, 189, 218, 251, 288, 329, 374, 423, 476, 533, 594, 659, 728, 801, 878, 959, 1044, 1133, 1226, 1133, 1044, 959, 878, 801, 728, 659, 594, 533, 476, 423, 374, 329, 288, 251, 218, 189, 164, 143, 126, 113, 104, 99, }
+00:00:00,157 PPGD_CG.cpp : 47 : info : --- Loading operators ---
+00:00:00,157 PPGD_CG.cpp : 48 : info : Loading inverse of Fock Operator
+00:00:00,157 PPGD_CG.cpp : 59 : info : { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, }
+00:00:00,157 PPGD_CG.cpp : 61 : info : --- Initializing Start Vector ---
+00:00:00,157 PPGD_CG.cpp : 62 : info : Setting Startvector
+00:00:00,157 PPGD_CG.cpp : 66 : info : { 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, }
+00:00:00,157 PPGD_CG.cpp : 68 : info : --- starting gradient descent ---
+00:00:00,210 PPGD_CG.cpp : 88 : info : ------ Iteration = 0
+00:00:00,210 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:00,210 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:00,393 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:00,397 PPGD_CG.cpp : 112 : info : Norm res 0.0633402
+00:00:00,397 PPGD_CG.cpp : 114 : info : Max rank Res = 6
+00:00:00,667 PPGD_CG.cpp : 127 : info : count = 0 -23.6564 -23.6564
+00:00:00,667 PPGD_CG.cpp : 133 : info : alpha = 0.181117
+00:00:00,669 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:00,777 PPGD_CG.cpp : 149 : info : Particle Number Phi 7.99961
+00:00:00,778 PPGD_CG.cpp : 155 : info : -76.076183
+00:00:00,778 PPGD_CG.cpp : 156 : info : Max rank Phi = 6
+00:00:00,782 PPGD_CG.cpp : 88 : info : ------ Iteration = 1
+00:00:00,782 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:00,782 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:01,145 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:01,145 PPGD_CG.cpp : 101 : info : Project last update
+00:00:01,150 PPGD_CG.cpp : 104 : info : Beta = 3.53986
+00:00:01,150 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:01,170 PPGD_CG.cpp : 112 : info : Norm res 0.317088
+00:00:01,170 PPGD_CG.cpp : 114 : info : Max rank Res = 12
+00:00:01,752 PPGD_CG.cpp : 127 : info : count = 0 -23.6571 -23.6571
+00:00:01,753 PPGD_CG.cpp : 133 : info : alpha = 0.0616245
+00:00:01,757 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:02,132 PPGD_CG.cpp : 149 : info : Particle Number Phi 7.99922
+00:00:02,133 PPGD_CG.cpp : 155 : info : -76.079279
+00:00:02,133 PPGD_CG.cpp : 156 : info : Max rank Phi = 12
+00:00:02,136 PPGD_CG.cpp : 88 : info : ------ Iteration = 2
+00:00:02,136 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:02,136 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:03,155 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:03,155 PPGD_CG.cpp : 101 : info : Project last update
+00:00:03,161 PPGD_CG.cpp : 104 : info : Beta = 1.20312
+00:00:03,161 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:03,182 PPGD_CG.cpp : 112 : info : Norm res 0.539484
+00:00:03,182 PPGD_CG.cpp : 114 : info : Max rank Res = 24
+00:00:04,961 PPGD_CG.cpp : 127 : info : count = 0 -23.6602 -23.6602
+00:00:04,961 PPGD_CG.cpp : 133 : info : alpha = 0.036915
+00:00:04,974 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:06,135 PPGD_CG.cpp : 149 : info : Particle Number Phi 7.99923
+00:00:06,137 PPGD_CG.cpp : 155 : info : -76.084643
+00:00:06,137 PPGD_CG.cpp : 156 : info : Max rank Phi = 24
+00:00:06,144 PPGD_CG.cpp : 88 : info : ------ Iteration = 3
+00:00:06,144 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:06,144 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:09,728 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:09,728 PPGD_CG.cpp : 101 : info : Project last update
+00:00:09,738 PPGD_CG.cpp : 104 : info : Beta = 1.00228
+00:00:09,739 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:09,762 PPGD_CG.cpp : 112 : info : Norm res 0.764456
+00:00:09,762 PPGD_CG.cpp : 114 : info : Max rank Res = 48
+00:00:16,557 PPGD_CG.cpp : 127 : info : count = 0 -23.6656 -23.6656
+00:00:16,557 PPGD_CG.cpp : 133 : info : alpha = 0.0567228
+00:00:16,611 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:21,285 PPGD_CG.cpp : 149 : info : Particle Number Phi 7.9998
+00:00:21,294 PPGD_CG.cpp : 155 : info : -76.101154
+00:00:21,294 PPGD_CG.cpp : 156 : info : Max rank Phi = 48
+00:00:21,296 PPGD_CG.cpp : 88 : info : ------ Iteration = 4
+00:00:21,296 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:21,297 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:34,793 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:34,793 PPGD_CG.cpp : 101 : info : Project last update
+00:00:34,817 PPGD_CG.cpp : 104 : info : Beta = 0.988848
+00:00:34,817 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:34,850 PPGD_CG.cpp : 112 : info : Norm res 1.06835
+00:00:34,850 PPGD_CG.cpp : 114 : info : Max rank Res = 96
+00:01:05,638 PPGD_CG.cpp : 127 : info : count = 0 -23.6821 -23.6821
+00:01:05,638 PPGD_CG.cpp : 133 : info : alpha = 0.0315033
+00:01:05,869 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:01:15,673 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00024
+00:01:15,697 PPGD_CG.cpp : 155 : info : -76.119001
+00:01:15,698 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:01:15,700 PPGD_CG.cpp : 88 : info : ------ Iteration = 5
+00:01:15,700 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:01:15,701 PPGD_CG.cpp : 92 : info : Project Gradient
+00:01:43,496 PPGD_CG.cpp : 96 : info : Calc update direction
+00:01:43,496 PPGD_CG.cpp : 101 : info : Project last update
+00:01:43,542 PPGD_CG.cpp : 104 : info : Beta = 0.732905
+00:01:43,543 PPGD_CG.cpp : 106 : info : Assemble update
+00:01:43,589 PPGD_CG.cpp : 112 : info : Norm res 1.10441
+00:01:43,590 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:02:46,706 PPGD_CG.cpp : 127 : info : count = 0 -23.6999 -23.6999
+00:02:46,706 PPGD_CG.cpp : 133 : info : alpha = 0.0476984
+00:02:47,189 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:02:57,235 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00071
+00:02:57,260 PPGD_CG.cpp : 155 : info : -76.14813
+00:02:57,260 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:02:57,262 PPGD_CG.cpp : 88 : info : ------ Iteration = 6
+00:02:57,262 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:02:57,262 PPGD_CG.cpp : 92 : info : Project Gradient
+00:03:25,230 PPGD_CG.cpp : 96 : info : Calc update direction
+00:03:25,230 PPGD_CG.cpp : 101 : info : Project last update
+00:03:25,284 PPGD_CG.cpp : 104 : info : Beta = 0.816214
+00:03:25,284 PPGD_CG.cpp : 106 : info : Assemble update
+00:03:25,334 PPGD_CG.cpp : 112 : info : Norm res 1.27261
+00:03:25,334 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:04:28,894 PPGD_CG.cpp : 127 : info : count = 0 -23.7291 -23.7291
+00:04:28,894 PPGD_CG.cpp : 133 : info : alpha = 0.0269825
+00:04:29,384 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:04:39,424 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00073
+00:04:39,449 PPGD_CG.cpp : 155 : info : -76.169766
+00:04:39,449 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:04:39,453 PPGD_CG.cpp : 88 : info : ------ Iteration = 7
+00:04:39,453 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:04:39,453 PPGD_CG.cpp : 92 : info : Project Gradient
+00:05:07,487 PPGD_CG.cpp : 96 : info : Calc update direction
+00:05:07,487 PPGD_CG.cpp : 101 : info : Project last update
+00:05:07,542 PPGD_CG.cpp : 104 : info : Beta = 0.582749
+00:05:07,542 PPGD_CG.cpp : 106 : info : Assemble update
+00:05:07,591 PPGD_CG.cpp : 112 : info : Norm res 1.04294
+00:05:07,591 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:06:11,182 PPGD_CG.cpp : 127 : info : count = 0 -23.7507 -23.7507
+00:06:11,182 PPGD_CG.cpp : 133 : info : alpha = 0.0380224
+00:06:11,673 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:06:21,714 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00065
+00:06:21,740 PPGD_CG.cpp : 155 : info : -76.190439
+00:06:21,740 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:06:21,744 PPGD_CG.cpp : 88 : info : ------ Iteration = 8
+00:06:21,744 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:06:21,745 PPGD_CG.cpp : 92 : info : Project Gradient
+00:06:49,768 PPGD_CG.cpp : 96 : info : Calc update direction
+00:06:49,768 PPGD_CG.cpp : 101 : info : Project last update
+00:06:49,823 PPGD_CG.cpp : 104 : info : Beta = 0.727815
+00:06:49,823 PPGD_CG.cpp : 106 : info : Assemble update
+00:06:49,871 PPGD_CG.cpp : 112 : info : Norm res 1.06849
+00:06:49,871 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:07:53,972 PPGD_CG.cpp : 127 : info : count = 0 -23.7714 -23.7714
+00:07:53,973 PPGD_CG.cpp : 133 : info : alpha = 0.0238294
+00:07:54,465 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:08:04,671 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00047
+00:08:04,697 PPGD_CG.cpp : 155 : info : -76.203881
+00:08:04,697 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:08:04,701 PPGD_CG.cpp : 88 : info : ------ Iteration = 9
+00:08:04,701 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:08:04,701 PPGD_CG.cpp : 92 : info : Project Gradient
+00:08:32,931 PPGD_CG.cpp : 96 : info : Calc update direction
+00:08:32,931 PPGD_CG.cpp : 101 : info : Project last update
+00:08:32,986 PPGD_CG.cpp : 104 : info : Beta = 0.529757
+00:08:32,986 PPGD_CG.cpp : 106 : info : Assemble update
+00:08:33,034 PPGD_CG.cpp : 112 : info : Norm res 0.794351
+00:08:33,034 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:09:38,110 PPGD_CG.cpp : 127 : info : count = 0 -23.7848 -23.7848
+00:09:38,110 PPGD_CG.cpp : 133 : info : alpha = 0.0328825
+00:09:38,603 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:09:48,780 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00035
+00:09:48,807 PPGD_CG.cpp : 155 : info : -76.21424
+00:09:48,807 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:09:48,811 PPGD_CG.cpp : 88 : info : ------ Iteration = 10
+00:09:48,811 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:09:48,811 PPGD_CG.cpp : 92 : info : Project Gradient
+00:10:17,074 PPGD_CG.cpp : 96 : info : Calc update direction
+00:10:17,074 PPGD_CG.cpp : 101 : info : Project last update
+00:10:17,129 PPGD_CG.cpp : 104 : info : Beta = 0.675699
+00:10:17,129 PPGD_CG.cpp : 106 : info : Assemble update
+00:10:17,177 PPGD_CG.cpp : 112 : info : Norm res 0.755325
+00:10:17,177 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:11:21,835 PPGD_CG.cpp : 127 : info : count = 0 -23.7952 -23.7952
+00:11:21,835 PPGD_CG.cpp : 133 : info : alpha = 0.0230924
+00:11:22,321 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:11:32,522 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00024
+00:11:32,548 PPGD_CG.cpp : 155 : info : -76.22081
+00:11:32,548 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:11:32,552 PPGD_CG.cpp : 88 : info : ------ Iteration = 11
+00:11:32,552 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:11:32,552 PPGD_CG.cpp : 92 : info : Project Gradient
+00:12:00,801 PPGD_CG.cpp : 96 : info : Calc update direction
+00:12:00,801 PPGD_CG.cpp : 101 : info : Project last update
+00:12:00,856 PPGD_CG.cpp : 104 : info : Beta = 0.538149
+00:12:00,856 PPGD_CG.cpp : 106 : info : Assemble update
+00:12:00,903 PPGD_CG.cpp : 112 : info : Norm res 0.572463
+00:12:00,903 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:13:05,491 PPGD_CG.cpp : 127 : info : count = 0 -23.8018 -23.8018
+00:13:05,491 PPGD_CG.cpp : 133 : info : alpha = 0.030639
+00:13:05,977 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:13:16,164 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00019
+00:13:16,190 PPGD_CG.cpp : 155 : info : -76.225888
+00:13:16,190 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:13:16,194 PPGD_CG.cpp : 88 : info : ------ Iteration = 12
+00:13:16,194 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:13:16,194 PPGD_CG.cpp : 92 : info : Project Gradient
+00:13:44,464 PPGD_CG.cpp : 96 : info : Calc update direction
+00:13:44,464 PPGD_CG.cpp : 101 : info : Project last update
+00:13:44,518 PPGD_CG.cpp : 104 : info : Beta = 0.718201
+00:13:44,518 PPGD_CG.cpp : 106 : info : Assemble update
+00:13:44,566 PPGD_CG.cpp : 112 : info : Norm res 0.580125
+00:13:44,566 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:14:49,174 PPGD_CG.cpp : 127 : info : count = 0 -23.8068 -23.8068
+00:14:49,174 PPGD_CG.cpp : 133 : info : alpha = 0.0245356
+00:14:49,663 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:14:59,838 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00015
+00:14:59,864 PPGD_CG.cpp : 155 : info : -76.230101
+00:14:59,864 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:14:59,868 PPGD_CG.cpp : 88 : info : ------ Iteration = 13
+00:14:59,868 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:14:59,868 PPGD_CG.cpp : 92 : info : Project Gradient
+00:15:28,118 PPGD_CG.cpp : 96 : info : Calc update direction
+00:15:28,118 PPGD_CG.cpp : 101 : info : Project last update
+00:15:28,173 PPGD_CG.cpp : 104 : info : Beta = 0.647102
+00:15:28,173 PPGD_CG.cpp : 106 : info : Assemble update
+00:15:28,221 PPGD_CG.cpp : 112 : info : Norm res 0.531661
+00:15:28,221 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:16:32,854 PPGD_CG.cpp : 127 : info : count = 0 -23.811 -23.811
+00:16:32,854 PPGD_CG.cpp : 133 : info : alpha = 0.0310771
+00:16:33,342 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:16:43,523 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00014
+00:16:43,549 PPGD_CG.cpp : 155 : info : -76.234621
+00:16:43,549 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:16:43,555 PPGD_CG.cpp : 88 : info : ------ Iteration = 14
+00:16:43,555 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:16:43,555 PPGD_CG.cpp : 92 : info : Project Gradient
+00:17:11,799 PPGD_CG.cpp : 96 : info : Calc update direction
+00:17:11,799 PPGD_CG.cpp : 101 : info : Project last update
+00:17:11,853 PPGD_CG.cpp : 104 : info : Beta = 0.762953
+00:17:11,853 PPGD_CG.cpp : 106 : info : Assemble update
+00:17:11,901 PPGD_CG.cpp : 112 : info : Norm res 0.573977
+00:17:11,901 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:18:16,698 PPGD_CG.cpp : 127 : info : count = 0 -23.8156 -23.8156
+00:18:16,698 PPGD_CG.cpp : 133 : info : alpha = 0.0226803
+00:18:17,187 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:18:27,373 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00011
+00:18:27,399 PPGD_CG.cpp : 155 : info : -76.238418
+00:18:27,399 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:18:27,401 PPGD_CG.cpp : 88 : info : ------ Iteration = 15
+00:18:27,401 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:18:27,401 PPGD_CG.cpp : 92 : info : Project Gradient
+00:18:55,672 PPGD_CG.cpp : 96 : info : Calc update direction
+00:18:55,672 PPGD_CG.cpp : 101 : info : Project last update
+00:18:55,726 PPGD_CG.cpp : 104 : info : Beta = 0.594088
+00:18:55,726 PPGD_CG.cpp : 106 : info : Assemble update
+00:18:55,775 PPGD_CG.cpp : 112 : info : Norm res 0.483496
+00:18:55,775 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:20:00,535 PPGD_CG.cpp : 127 : info : count = 0 -23.8194 -23.8194
+00:20:00,535 PPGD_CG.cpp : 133 : info : alpha = 0.0286136
+00:20:01,022 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:20:11,193 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.0001
+00:20:11,219 PPGD_CG.cpp : 155 : info : -76.241848
+00:20:11,219 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:20:11,223 PPGD_CG.cpp : 88 : info : ------ Iteration = 16
+00:20:11,223 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:20:11,223 PPGD_CG.cpp : 92 : info : Project Gradient
+00:20:39,443 PPGD_CG.cpp : 96 : info : Calc update direction
+00:20:39,443 PPGD_CG.cpp : 101 : info : Project last update
+00:20:39,498 PPGD_CG.cpp : 104 : info : Beta = 0.694229
+00:20:39,498 PPGD_CG.cpp : 106 : info : Assemble update
+00:20:39,551 PPGD_CG.cpp : 112 : info : Norm res 0.476371
+00:20:39,551 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:21:44,383 PPGD_CG.cpp : 127 : info : count = 0 -23.8228 -23.8228
+00:21:44,383 PPGD_CG.cpp : 133 : info : alpha = 0.0210454
+00:21:44,873 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:21:54,979 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00007
+00:21:55,004 PPGD_CG.cpp : 155 : info : -76.244282
+00:21:55,005 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:21:55,006 PPGD_CG.cpp : 88 : info : ------ Iteration = 17
+00:21:55,007 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:21:55,007 PPGD_CG.cpp : 92 : info : Project Gradient
+00:22:23,050 PPGD_CG.cpp : 96 : info : Calc update direction
+00:22:23,050 PPGD_CG.cpp : 101 : info : Project last update
+00:22:23,105 PPGD_CG.cpp : 104 : info : Beta = 0.544457
+00:22:23,105 PPGD_CG.cpp : 106 : info : Assemble update
+00:22:23,153 PPGD_CG.cpp : 112 : info : Norm res 0.368776
+00:22:23,153 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:23:27,215 PPGD_CG.cpp : 127 : info : count = 0 -23.8252 -23.8252
+00:23:27,215 PPGD_CG.cpp : 133 : info : alpha = 0.0281389
+00:23:27,701 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:23:37,806 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00007
+00:23:37,831 PPGD_CG.cpp : 155 : info : -76.246271
+00:23:37,831 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:23:37,836 PPGD_CG.cpp : 88 : info : ------ Iteration = 18
+00:23:37,836 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:23:37,836 PPGD_CG.cpp : 92 : info : Project Gradient
+00:24:05,906 PPGD_CG.cpp : 96 : info : Calc update direction
+00:24:05,907 PPGD_CG.cpp : 101 : info : Project last update
+00:24:05,960 PPGD_CG.cpp : 104 : info : Beta = 0.701666
+00:24:05,961 PPGD_CG.cpp : 106 : info : Assemble update
+00:24:06,009 PPGD_CG.cpp : 112 : info : Norm res 0.368675
+00:24:06,009 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:25:10,056 PPGD_CG.cpp : 127 : info : count = 0 -23.8272 -23.8272
+00:25:10,056 PPGD_CG.cpp : 133 : info : alpha = 0.020766
+00:25:10,544 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:25:20,654 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00005
+00:25:20,680 PPGD_CG.cpp : 155 : info : -76.247732
+00:25:20,680 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:25:20,684 PPGD_CG.cpp : 88 : info : ------ Iteration = 19
+00:25:20,684 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:25:20,684 PPGD_CG.cpp : 92 : info : Project Gradient
+00:25:48,749 PPGD_CG.cpp : 96 : info : Calc update direction
+00:25:48,749 PPGD_CG.cpp : 101 : info : Project last update
+00:25:48,803 PPGD_CG.cpp : 104 : info : Beta = 0.566242
+00:25:48,803 PPGD_CG.cpp : 106 : info : Assemble update
+00:25:48,851 PPGD_CG.cpp : 112 : info : Norm res 0.298419
+00:25:48,851 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:26:52,827 PPGD_CG.cpp : 127 : info : count = 0 -23.8287 -23.8287
+00:26:52,827 PPGD_CG.cpp : 133 : info : alpha = 0.0286689
+00:26:53,315 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:27:03,526 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00005
+00:27:03,551 PPGD_CG.cpp : 155 : info : -76.249115
+00:27:03,551 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:27:03,553 PPGD_CG.cpp : 88 : info : ------ Iteration = 20
+00:27:03,553 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:27:03,554 PPGD_CG.cpp : 92 : info : Project Gradient
+00:27:31,514 PPGD_CG.cpp : 96 : info : Calc update direction
+00:27:31,514 PPGD_CG.cpp : 101 : info : Project last update
+00:27:31,568 PPGD_CG.cpp : 104 : info : Beta = 0.731418
+00:27:31,569 PPGD_CG.cpp : 106 : info : Assemble update
+00:27:31,616 PPGD_CG.cpp : 112 : info : Norm res 0.314397
+00:27:31,616 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:28:35,254 PPGD_CG.cpp : 127 : info : count = 0 -23.8301 -23.8301
+00:28:35,254 PPGD_CG.cpp : 133 : info : alpha = 0.0208572
+00:28:35,740 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:28:45,782 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00005
+00:28:45,807 PPGD_CG.cpp : 155 : info : -76.250188
+00:28:45,807 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:28:45,809 PPGD_CG.cpp : 88 : info : ------ Iteration = 21
+00:28:45,809 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:28:45,809 PPGD_CG.cpp : 92 : info : Project Gradient
+00:29:13,788 PPGD_CG.cpp : 96 : info : Calc update direction
+00:29:13,788 PPGD_CG.cpp : 101 : info : Project last update
+00:29:13,842 PPGD_CG.cpp : 104 : info : Beta = 0.617883
+00:29:13,842 PPGD_CG.cpp : 106 : info : Assemble update
+00:29:13,890 PPGD_CG.cpp : 112 : info : Norm res 0.277945
+00:29:13,890 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:30:17,444 PPGD_CG.cpp : 127 : info : count = 0 -23.8311 -23.8311
+00:30:17,444 PPGD_CG.cpp : 133 : info : alpha = 0.0264972
+00:30:17,931 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:30:27,958 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00005
+00:30:27,984 PPGD_CG.cpp : 155 : info : -76.251264
+00:30:27,984 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:30:27,986 PPGD_CG.cpp : 88 : info : ------ Iteration = 22
+00:30:27,986 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:30:27,986 PPGD_CG.cpp : 92 : info : Project Gradient
+00:30:55,919 PPGD_CG.cpp : 96 : info : Calc update direction
+00:30:55,919 PPGD_CG.cpp : 101 : info : Project last update
+00:30:55,973 PPGD_CG.cpp : 104 : info : Beta = 0.725149
+00:30:55,973 PPGD_CG.cpp : 106 : info : Assemble update
+00:30:56,021 PPGD_CG.cpp : 112 : info : Norm res 0.287798
+00:30:56,021 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:31:59,570 PPGD_CG.cpp : 127 : info : count = 0 -23.8322 -23.8322
+00:31:59,570 PPGD_CG.cpp : 133 : info : alpha = 0.0192963
+00:32:00,055 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:32:10,077 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00004
+00:32:10,103 PPGD_CG.cpp : 155 : info : -76.252089
+00:32:10,103 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:32:10,110 PPGD_CG.cpp : 88 : info : ------ Iteration = 23
+00:32:10,110 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:32:10,110 PPGD_CG.cpp : 92 : info : Project Gradient
+00:32:38,087 PPGD_CG.cpp : 96 : info : Calc update direction
+00:32:38,087 PPGD_CG.cpp : 101 : info : Project last update
+00:32:38,142 PPGD_CG.cpp : 104 : info : Beta = 0.55872
+00:32:38,142 PPGD_CG.cpp : 106 : info : Assemble update
+00:32:38,190 PPGD_CG.cpp : 112 : info : Norm res 0.229557
+00:32:38,190 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:33:41,767 PPGD_CG.cpp : 127 : info : count = 0 -23.833 -23.833
+00:33:41,767 PPGD_CG.cpp : 133 : info : alpha = 0.0247729
+00:33:42,258 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:33:52,306 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00004
+00:33:52,332 PPGD_CG.cpp : 155 : info : -76.252767
+00:33:52,332 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:33:52,334 PPGD_CG.cpp : 88 : info : ------ Iteration = 24
+00:33:52,334 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:33:52,334 PPGD_CG.cpp : 92 : info : Project Gradient
+00:34:20,334 PPGD_CG.cpp : 96 : info : Calc update direction
+00:34:20,334 PPGD_CG.cpp : 101 : info : Project last update
+00:34:20,388 PPGD_CG.cpp : 104 : info : Beta = 0.692284
+00:34:20,388 PPGD_CG.cpp : 106 : info : Assemble update
+00:34:20,436 PPGD_CG.cpp : 112 : info : Norm res 0.226572
+00:34:20,436 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:35:23,960 PPGD_CG.cpp : 127 : info : count = 0 -23.8337 -23.8337
+00:35:23,960 PPGD_CG.cpp : 133 : info : alpha = 0.0176818
+00:35:24,445 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:35:34,494 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00004
+00:35:34,519 PPGD_CG.cpp : 155 : info : -76.253231
+00:35:34,519 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:35:34,526 PPGD_CG.cpp : 88 : info : ------ Iteration = 25
+00:35:34,526 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:35:34,526 PPGD_CG.cpp : 92 : info : Project Gradient
+00:36:02,453 PPGD_CG.cpp : 96 : info : Calc update direction
+00:36:02,453 PPGD_CG.cpp : 101 : info : Project last update
+00:36:02,507 PPGD_CG.cpp : 104 : info : Beta = 0.526124
+00:36:02,507 PPGD_CG.cpp : 106 : info : Assemble update
+00:36:02,555 PPGD_CG.cpp : 112 : info : Norm res 0.169899
+00:36:02,555 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:37:06,097 PPGD_CG.cpp : 127 : info : count = 0 -23.8342 -23.8342
+00:37:06,097 PPGD_CG.cpp : 133 : info : alpha = 0.0223992
+00:37:06,583 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:37:16,625 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:37:16,651 PPGD_CG.cpp : 155 : info : -76.253564
+00:37:16,651 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:37:16,653 PPGD_CG.cpp : 88 : info : ------ Iteration = 26
+00:37:16,653 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:37:16,653 PPGD_CG.cpp : 92 : info : Project Gradient
+00:37:44,551 PPGD_CG.cpp : 96 : info : Calc update direction
+00:37:44,551 PPGD_CG.cpp : 101 : info : Project last update
+00:37:44,606 PPGD_CG.cpp : 104 : info : Beta = 0.672991
+00:37:44,606 PPGD_CG.cpp : 106 : info : Assemble update
+00:37:44,654 PPGD_CG.cpp : 112 : info : Norm res 0.163048
+00:37:44,654 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:38:48,208 PPGD_CG.cpp : 127 : info : count = 0 -23.8345 -23.8345
+00:38:48,208 PPGD_CG.cpp : 133 : info : alpha = 0.016434
+00:38:48,692 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:38:58,745 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:38:58,770 PPGD_CG.cpp : 155 : info : -76.253788
+00:38:58,770 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:38:58,772 PPGD_CG.cpp : 88 : info : ------ Iteration = 27
+00:38:58,772 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:38:58,772 PPGD_CG.cpp : 92 : info : Project Gradient
+00:39:26,895 PPGD_CG.cpp : 96 : info : Calc update direction
+00:39:26,895 PPGD_CG.cpp : 101 : info : Project last update
+00:39:26,950 PPGD_CG.cpp : 104 : info : Beta = 0.517322
+00:39:26,950 PPGD_CG.cpp : 106 : info : Assemble update
+00:39:26,998 PPGD_CG.cpp : 112 : info : Norm res 0.12033
+00:39:26,998 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:40:31,558 PPGD_CG.cpp : 127 : info : count = 0 -23.8347 -23.8347
+00:40:31,558 PPGD_CG.cpp : 133 : info : alpha = 0.02135
+00:40:32,039 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:40:42,217 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:40:42,243 PPGD_CG.cpp : 155 : info : -76.253948
+00:40:42,243 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:40:42,245 PPGD_CG.cpp : 88 : info : ------ Iteration = 28
+00:40:42,245 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:40:42,245 PPGD_CG.cpp : 92 : info : Project Gradient
+00:41:10,096 PPGD_CG.cpp : 96 : info : Calc update direction
+00:41:10,096 PPGD_CG.cpp : 101 : info : Project last update
+00:41:10,150 PPGD_CG.cpp : 104 : info : Beta = 0.663984
+00:41:10,150 PPGD_CG.cpp : 106 : info : Assemble update
+00:41:10,198 PPGD_CG.cpp : 112 : info : Norm res 0.114317
+00:41:10,198 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:42:13,985 PPGD_CG.cpp : 127 : info : count = 0 -23.8349 -23.8349
+00:42:13,985 PPGD_CG.cpp : 133 : info : alpha = 0.0167804
+00:42:14,468 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:42:24,501 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:42:24,526 PPGD_CG.cpp : 155 : info : -76.254061
+00:42:24,526 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:42:24,528 PPGD_CG.cpp : 88 : info : ------ Iteration = 29
+00:42:24,528 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:42:24,528 PPGD_CG.cpp : 92 : info : Project Gradient
+00:42:52,372 PPGD_CG.cpp : 96 : info : Calc update direction
+00:42:52,372 PPGD_CG.cpp : 101 : info : Project last update
+00:42:52,426 PPGD_CG.cpp : 104 : info : Beta = 0.53286
+00:42:52,427 PPGD_CG.cpp : 106 : info : Assemble update
+00:42:52,474 PPGD_CG.cpp : 112 : info : Norm res 0.0872194
+00:42:52,474 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:43:56,056 PPGD_CG.cpp : 127 : info : count = 0 -23.835 -23.835
+00:43:56,056 PPGD_CG.cpp : 133 : info : alpha = 0.0216518
+00:43:56,542 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:44:06,574 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:44:06,600 PPGD_CG.cpp : 155 : info : -76.254147
+00:44:06,600 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:44:06,602 PPGD_CG.cpp : 88 : info : ------ Iteration = 30
+00:44:06,602 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:44:06,602 PPGD_CG.cpp : 92 : info : Project Gradient
+00:44:34,451 PPGD_CG.cpp : 96 : info : Calc update direction
+00:44:34,451 PPGD_CG.cpp : 101 : info : Project last update
+00:44:34,505 PPGD_CG.cpp : 104 : info : Beta = 0.675556
+00:44:34,505 PPGD_CG.cpp : 106 : info : Assemble update
+00:44:34,553 PPGD_CG.cpp : 112 : info : Norm res 0.08461
+00:44:34,553 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:45:38,107 PPGD_CG.cpp : 127 : info : count = 0 -23.8351 -23.8351
+00:45:38,107 PPGD_CG.cpp : 133 : info : alpha = 0.0170474
+00:45:38,586 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:45:48,627 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:45:48,652 PPGD_CG.cpp : 155 : info : -76.254211
+00:45:48,652 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:45:48,656 PPGD_CG.cpp : 88 : info : ------ Iteration = 31
+00:45:48,656 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:45:48,656 PPGD_CG.cpp : 92 : info : Project Gradient
+00:46:16,494 PPGD_CG.cpp : 96 : info : Calc update direction
+00:46:16,494 PPGD_CG.cpp : 101 : info : Project last update
+00:46:16,548 PPGD_CG.cpp : 104 : info : Beta = 0.553579
+00:46:16,548 PPGD_CG.cpp : 106 : info : Assemble update
+00:46:16,596 PPGD_CG.cpp : 112 : info : Norm res 0.0674235
+00:46:16,596 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:47:20,119 PPGD_CG.cpp : 127 : info : count = 0 -23.8352 -23.8352
+00:47:20,119 PPGD_CG.cpp : 133 : info : alpha = 0.0221193
+00:47:20,596 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:47:30,612 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:47:30,637 PPGD_CG.cpp : 155 : info : -76.254265
+00:47:30,637 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:47:30,639 PPGD_CG.cpp : 88 : info : ------ Iteration = 32
+00:47:30,639 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:47:30,639 PPGD_CG.cpp : 92 : info : Project Gradient
+00:47:58,517 PPGD_CG.cpp : 96 : info : Calc update direction
+00:47:58,517 PPGD_CG.cpp : 101 : info : Project last update
+00:47:58,571 PPGD_CG.cpp : 104 : info : Beta = 0.702387
+00:47:58,571 PPGD_CG.cpp : 106 : info : Assemble update
+00:47:58,619 PPGD_CG.cpp : 112 : info : Norm res 0.0685252
+00:47:58,619 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:49:02,207 PPGD_CG.cpp : 127 : info : count = 0 -23.8352 -23.8352
+00:49:02,207 PPGD_CG.cpp : 133 : info : alpha = 0.017606
+00:49:02,686 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:49:12,730 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:49:12,755 PPGD_CG.cpp : 155 : info : -76.254309
+00:49:12,755 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:49:12,757 PPGD_CG.cpp : 88 : info : ------ Iteration = 33
+00:49:12,757 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:49:12,757 PPGD_CG.cpp : 92 : info : Project Gradient
+00:49:40,596 PPGD_CG.cpp : 96 : info : Calc update direction
+00:49:40,596 PPGD_CG.cpp : 101 : info : Project last update
+00:49:40,651 PPGD_CG.cpp : 104 : info : Beta = 0.585352
+00:49:40,651 PPGD_CG.cpp : 106 : info : Assemble update
+00:49:40,699 PPGD_CG.cpp : 112 : info : Norm res 0.058166
+00:49:40,699 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:50:44,265 PPGD_CG.cpp : 127 : info : count = 0 -23.8352 -23.8352
+00:50:44,265 PPGD_CG.cpp : 133 : info : alpha = 0.0224883
+00:50:44,740 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:50:54,793 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:50:54,818 PPGD_CG.cpp : 155 : info : -76.254351
+00:50:54,818 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:50:54,822 PPGD_CG.cpp : 88 : info : ------ Iteration = 34
+00:50:54,823 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:50:54,823 PPGD_CG.cpp : 92 : info : Project Gradient
+00:51:22,664 PPGD_CG.cpp : 96 : info : Calc update direction
+00:51:22,664 PPGD_CG.cpp : 101 : info : Project last update
+00:51:22,718 PPGD_CG.cpp : 104 : info : Beta = 0.718523
+00:51:22,718 PPGD_CG.cpp : 106 : info : Assemble update
+00:51:22,767 PPGD_CG.cpp : 112 : info : Norm res 0.0609745
+00:51:22,767 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:52:26,405 PPGD_CG.cpp : 127 : info : count = 0 -23.8353 -23.8353
+00:52:26,406 PPGD_CG.cpp : 133 : info : alpha = 0.0178799
+00:52:26,884 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:52:36,921 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:52:36,946 PPGD_CG.cpp : 155 : info : -76.254387
+00:52:36,946 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:52:36,948 PPGD_CG.cpp : 88 : info : ------ Iteration = 35
+00:52:36,948 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:52:36,948 PPGD_CG.cpp : 92 : info : Project Gradient
+00:53:04,786 PPGD_CG.cpp : 96 : info : Calc update direction
+00:53:04,786 PPGD_CG.cpp : 101 : info : Project last update
+00:53:04,840 PPGD_CG.cpp : 104 : info : Beta = 0.598859
+00:53:04,840 PPGD_CG.cpp : 106 : info : Assemble update
+00:53:04,889 PPGD_CG.cpp : 112 : info : Norm res 0.0533655
+00:53:04,889 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:54:08,654 PPGD_CG.cpp : 127 : info : count = 0 -23.8353 -23.8353
+00:54:08,654 PPGD_CG.cpp : 133 : info : alpha = 0.022193
+00:54:09,133 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:54:19,157 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00003
+00:54:19,182 PPGD_CG.cpp : 155 : info : -76.254423
+00:54:19,182 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:54:19,184 PPGD_CG.cpp : 88 : info : ------ Iteration = 36
+00:54:19,184 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:54:19,184 PPGD_CG.cpp : 92 : info : Project Gradient
+00:54:47,031 PPGD_CG.cpp : 96 : info : Calc update direction
+00:54:47,031 PPGD_CG.cpp : 101 : info : Project last update
+00:54:47,085 PPGD_CG.cpp : 104 : info : Beta = 0.721187
+00:54:47,085 PPGD_CG.cpp : 106 : info : Assemble update
+00:54:47,134 PPGD_CG.cpp : 112 : info : Norm res 0.0564209
+00:54:47,134 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:55:50,642 PPGD_CG.cpp : 127 : info : count = 0 -23.8354 -23.8354
+00:55:50,642 PPGD_CG.cpp : 133 : info : alpha = 0.0182432
+00:55:51,123 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:56:01,161 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+00:56:01,186 PPGD_CG.cpp : 155 : info : -76.254455
+00:56:01,186 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:56:01,188 PPGD_CG.cpp : 88 : info : ------ Iteration = 37
+00:56:01,188 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:56:01,188 PPGD_CG.cpp : 92 : info : Project Gradient
+00:56:29,033 PPGD_CG.cpp : 96 : info : Calc update direction
+00:56:29,033 PPGD_CG.cpp : 101 : info : Project last update
+00:56:29,086 PPGD_CG.cpp : 104 : info : Beta = 0.616889
+00:56:29,087 PPGD_CG.cpp : 106 : info : Assemble update
+00:56:29,135 PPGD_CG.cpp : 112 : info : Norm res 0.0510429
+00:56:29,135 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:57:32,652 PPGD_CG.cpp : 127 : info : count = 0 -23.8354 -23.8354
+00:57:32,652 PPGD_CG.cpp : 133 : info : alpha = 0.0220675
+00:57:33,133 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:57:43,165 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+00:57:43,191 PPGD_CG.cpp : 155 : info : -76.254487
+00:57:43,191 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:57:43,198 PPGD_CG.cpp : 88 : info : ------ Iteration = 38
+00:57:43,198 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:57:43,198 PPGD_CG.cpp : 92 : info : Project Gradient
+00:58:11,018 PPGD_CG.cpp : 96 : info : Calc update direction
+00:58:11,018 PPGD_CG.cpp : 101 : info : Project last update
+00:58:11,072 PPGD_CG.cpp : 104 : info : Beta = 0.719415
+00:58:11,072 PPGD_CG.cpp : 106 : info : Assemble update
+00:58:11,119 PPGD_CG.cpp : 112 : info : Norm res 0.0541158
+00:58:11,119 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:59:14,667 PPGD_CG.cpp : 127 : info : count = 0 -23.8354 -23.8354
+00:59:14,667 PPGD_CG.cpp : 133 : info : alpha = 0.0185791
+00:59:15,146 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:59:25,164 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+00:59:25,189 PPGD_CG.cpp : 155 : info : -76.254518
+00:59:25,189 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:59:25,205 PPGD_CG.cpp : 88 : info : ------ Iteration = 39
+00:59:25,205 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:59:25,205 PPGD_CG.cpp : 92 : info : Project Gradient
+00:59:53,015 PPGD_CG.cpp : 96 : info : Calc update direction
+00:59:53,015 PPGD_CG.cpp : 101 : info : Project last update
+00:59:53,069 PPGD_CG.cpp : 104 : info : Beta = 0.634352
+00:59:53,069 PPGD_CG.cpp : 106 : info : Assemble update
+00:59:53,116 PPGD_CG.cpp : 112 : info : Norm res 0.0505809
+00:59:53,116 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:00:56,509 PPGD_CG.cpp : 127 : info : count = 0 -23.8355 -23.8355
+01:00:56,509 PPGD_CG.cpp : 133 : info : alpha = 0.0218581
+01:00:56,992 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:01:07,005 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:01:07,030 PPGD_CG.cpp : 155 : info : -76.25455
+01:01:07,030 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:01:07,035 PPGD_CG.cpp : 88 : info : ------ Iteration = 40
+01:01:07,035 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:01:07,035 PPGD_CG.cpp : 92 : info : Project Gradient
+01:01:34,840 PPGD_CG.cpp : 96 : info : Calc update direction
+01:01:34,840 PPGD_CG.cpp : 101 : info : Project last update
+01:01:34,895 PPGD_CG.cpp : 104 : info : Beta = 0.724263
+01:01:34,895 PPGD_CG.cpp : 106 : info : Assemble update
+01:01:34,943 PPGD_CG.cpp : 112 : info : Norm res 0.0541786
+01:01:34,943 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:02:38,379 PPGD_CG.cpp : 127 : info : count = 0 -23.8355 -23.8355
+01:02:38,379 PPGD_CG.cpp : 133 : info : alpha = 0.0190079
+01:02:38,861 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:02:48,986 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:02:49,011 PPGD_CG.cpp : 155 : info : -76.254581
+01:02:49,011 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:02:49,013 PPGD_CG.cpp : 88 : info : ------ Iteration = 41
+01:02:49,013 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:02:49,013 PPGD_CG.cpp : 92 : info : Project Gradient
+01:03:16,818 PPGD_CG.cpp : 96 : info : Calc update direction
+01:03:16,818 PPGD_CG.cpp : 101 : info : Project last update
+01:03:16,872 PPGD_CG.cpp : 104 : info : Beta = 0.651267
+01:03:16,872 PPGD_CG.cpp : 106 : info : Assemble update
+01:03:16,920 PPGD_CG.cpp : 112 : info : Norm res 0.0521246
+01:03:16,920 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:04:20,310 PPGD_CG.cpp : 127 : info : count = 0 -23.8355 -23.8355
+01:04:20,310 PPGD_CG.cpp : 133 : info : alpha = 0.0217238
+01:04:20,789 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:04:30,805 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:04:30,831 PPGD_CG.cpp : 155 : info : -76.254615
+01:04:30,831 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:04:30,833 PPGD_CG.cpp : 88 : info : ------ Iteration = 42
+01:04:30,833 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:04:30,833 PPGD_CG.cpp : 92 : info : Project Gradient
+01:04:58,689 PPGD_CG.cpp : 96 : info : Calc update direction
+01:04:58,689 PPGD_CG.cpp : 101 : info : Project last update
+01:04:58,743 PPGD_CG.cpp : 104 : info : Beta = 0.717445
+01:04:58,743 PPGD_CG.cpp : 106 : info : Assemble update
+01:04:58,792 PPGD_CG.cpp : 112 : info : Norm res 0.055364
+01:04:58,792 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:06:02,167 PPGD_CG.cpp : 127 : info : count = 0 -23.8356 -23.8356
+01:06:02,167 PPGD_CG.cpp : 133 : info : alpha = 0.0191259
+01:06:02,646 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:06:12,661 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:06:12,686 PPGD_CG.cpp : 155 : info : -76.254648
+01:06:12,686 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:06:12,693 PPGD_CG.cpp : 88 : info : ------ Iteration = 43
+01:06:12,693 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:06:12,693 PPGD_CG.cpp : 92 : info : Project Gradient
+01:06:40,487 PPGD_CG.cpp : 96 : info : Calc update direction
+01:06:40,487 PPGD_CG.cpp : 101 : info : Project last update
+01:06:40,541 PPGD_CG.cpp : 104 : info : Beta = 0.653565
+01:06:40,541 PPGD_CG.cpp : 106 : info : Assemble update
+01:06:40,590 PPGD_CG.cpp : 112 : info : Norm res 0.0534556
+01:06:40,590 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:07:44,409 PPGD_CG.cpp : 127 : info : count = 0 -23.8356 -23.8356
+01:07:44,409 PPGD_CG.cpp : 133 : info : alpha = 0.0212157
+01:07:44,891 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:07:54,978 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:07:55,003 PPGD_CG.cpp : 155 : info : -76.254683
+01:07:55,003 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:07:55,007 PPGD_CG.cpp : 88 : info : ------ Iteration = 44
+01:07:55,007 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:07:55,007 PPGD_CG.cpp : 92 : info : Project Gradient
+01:08:22,987 PPGD_CG.cpp : 96 : info : Calc update direction
+01:08:22,987 PPGD_CG.cpp : 101 : info : Project last update
+01:08:23,041 PPGD_CG.cpp : 104 : info : Beta = 0.708618
+01:08:23,041 PPGD_CG.cpp : 106 : info : Assemble update
+01:08:23,088 PPGD_CG.cpp : 112 : info : Norm res 0.0560387
+01:08:23,088 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:09:26,886 PPGD_CG.cpp : 127 : info : count = 0 -23.8356 -23.8356
+01:09:26,886 PPGD_CG.cpp : 133 : info : alpha = 0.019343
+01:09:27,367 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:09:37,446 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:09:37,471 PPGD_CG.cpp : 155 : info : -76.254717
+01:09:37,471 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:09:37,474 PPGD_CG.cpp : 88 : info : ------ Iteration = 45
+01:09:37,474 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:09:37,474 PPGD_CG.cpp : 92 : info : Project Gradient
+01:10:05,395 PPGD_CG.cpp : 96 : info : Calc update direction
+01:10:05,395 PPGD_CG.cpp : 101 : info : Project last update
+01:10:05,449 PPGD_CG.cpp : 104 : info : Beta = 0.657869
+01:10:05,449 PPGD_CG.cpp : 106 : info : Assemble update
+01:10:05,498 PPGD_CG.cpp : 112 : info : Norm res 0.0545334
+01:10:05,498 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:11:09,333 PPGD_CG.cpp : 127 : info : count = 0 -23.8357 -23.8357
+01:11:09,333 PPGD_CG.cpp : 133 : info : alpha = 0.0214356
+01:11:09,833 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:11:19,921 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:11:19,946 PPGD_CG.cpp : 155 : info : -76.254754
+01:11:19,946 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:11:19,953 PPGD_CG.cpp : 88 : info : ------ Iteration = 46
+01:11:19,953 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:11:19,953 PPGD_CG.cpp : 92 : info : Project Gradient
+01:11:47,929 PPGD_CG.cpp : 96 : info : Calc update direction
+01:11:47,929 PPGD_CG.cpp : 101 : info : Project last update
+01:11:47,983 PPGD_CG.cpp : 104 : info : Beta = 0.711508
+01:11:47,984 PPGD_CG.cpp : 106 : info : Assemble update
+01:11:48,031 PPGD_CG.cpp : 112 : info : Norm res 0.0575573
+01:11:48,031 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:12:51,818 PPGD_CG.cpp : 127 : info : count = 0 -23.8357 -23.8357
+01:12:51,818 PPGD_CG.cpp : 133 : info : alpha = 0.0196801
+01:12:52,299 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:13:02,381 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:13:02,406 PPGD_CG.cpp : 155 : info : -76.254791
+01:13:02,406 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:13:02,408 PPGD_CG.cpp : 88 : info : ------ Iteration = 47
+01:13:02,408 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:13:02,408 PPGD_CG.cpp : 92 : info : Project Gradient
+01:13:30,345 PPGD_CG.cpp : 96 : info : Calc update direction
+01:13:30,345 PPGD_CG.cpp : 101 : info : Project last update
+01:13:30,399 PPGD_CG.cpp : 104 : info : Beta = 0.67485
+01:13:30,399 PPGD_CG.cpp : 106 : info : Assemble update
+01:13:30,447 PPGD_CG.cpp : 112 : info : Norm res 0.0575605
+01:13:30,447 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:14:34,319 PPGD_CG.cpp : 127 : info : count = 0 -23.8357 -23.8357
+01:14:34,319 PPGD_CG.cpp : 133 : info : alpha = 0.0210946
+01:14:34,801 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:14:44,887 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:14:44,912 PPGD_CG.cpp : 155 : info : -76.254832
+01:14:44,912 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:14:44,914 PPGD_CG.cpp : 88 : info : ------ Iteration = 48
+01:14:44,914 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:14:44,914 PPGD_CG.cpp : 92 : info : Project Gradient
+01:15:12,885 PPGD_CG.cpp : 96 : info : Calc update direction
+01:15:12,885 PPGD_CG.cpp : 101 : info : Project last update
+01:15:12,940 PPGD_CG.cpp : 104 : info : Beta = 0.719036
+01:15:12,940 PPGD_CG.cpp : 106 : info : Assemble update
+01:15:12,988 PPGD_CG.cpp : 112 : info : Norm res 0.0613382
+01:15:12,988 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:16:16,764 PPGD_CG.cpp : 127 : info : count = 0 -23.8358 -23.8358
+01:16:16,764 PPGD_CG.cpp : 133 : info : alpha = 0.0197959
+01:16:17,246 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:16:27,325 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:16:27,350 PPGD_CG.cpp : 155 : info : -76.254874
+01:16:27,350 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+01:16:27,354 PPGD_CG.cpp : 88 : info : ------ Iteration = 49
+01:16:27,354 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+01:16:27,354 PPGD_CG.cpp : 92 : info : Project Gradient
+01:16:55,164 PPGD_CG.cpp : 96 : info : Calc update direction
+01:16:55,164 PPGD_CG.cpp : 101 : info : Project last update
+01:16:55,218 PPGD_CG.cpp : 104 : info : Beta = 0.680968
+01:16:55,218 PPGD_CG.cpp : 106 : info : Assemble update
+01:16:55,266 PPGD_CG.cpp : 112 : info : Norm res 0.0618131
+01:16:55,266 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+01:17:58,679 PPGD_CG.cpp : 127 : info : count = 0 -23.8358 -23.8358
+01:17:58,679 PPGD_CG.cpp : 133 : info : alpha = 0.0211729
+01:17:59,159 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+01:18:09,166 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00002
+01:18:09,191 PPGD_CG.cpp : 155 : info : -76.254921
+01:18:09,191 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:00:00,159 PPGD_CG.cpp : 33 : info : The ranks of H are { 99, 104, 113, 126, 143, 164, 189, 218, 251, 288, 329, 374, 423, 476, 533, 594, 659, 728, 801, 878, 959, 1044, 1133, 1226, 1133, 1044, 959, 878, 801, 728, 659, 594, 533, 476, 423, 374, 329, 288, 251, 218, 189, 164, 143, 126, 113, 104, 99, }
+00:00:00,160 PPGD_CG.cpp : 47 : info : --- Loading operators ---
+00:00:00,160 PPGD_CG.cpp : 48 : info : Loading inverse of Fock Operator
+00:00:00,160 PPGD_CG.cpp : 57 : info : { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, }
+00:00:00,160 PPGD_CG.cpp : 59 : info : { 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, }
+00:00:00,160 PPGD_CG.cpp : 61 : info : --- Initializing Start Vector ---
+00:00:00,160 PPGD_CG.cpp : 62 : info : Setting Startvector
+00:00:00,160 PPGD_CG.cpp : 66 : info : { 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 2, }
+00:00:00,160 PPGD_CG.cpp : 68 : info : --- starting gradient descent ---
+00:00:00,211 PPGD_CG.cpp : 88 : info : ------ Iteration = 0
+00:00:00,211 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:00,211 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:00,394 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:00,399 PPGD_CG.cpp : 112 : info : Norm res 0.00256457
+00:00:00,399 PPGD_CG.cpp : 114 : info : Max rank Res = 6
+00:00:00,669 PPGD_CG.cpp : 127 : info : count = 0 -23.6564 -23.6564
+00:00:00,669 PPGD_CG.cpp : 133 : info : alpha = 5.84624
+00:00:00,671 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:00,781 PPGD_CG.cpp : 149 : info : Particle Number Phi 7.99948
+00:00:00,781 PPGD_CG.cpp : 155 : info : -76.076396
+00:00:00,781 PPGD_CG.cpp : 156 : info : Max rank Phi = 6
+00:00:00,785 PPGD_CG.cpp : 88 : info : ------ Iteration = 1
+00:00:00,785 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:00,785 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:01,155 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:01,155 PPGD_CG.cpp : 101 : info : Project last update
+00:00:01,161 PPGD_CG.cpp : 104 : info : Beta = 3.45416
+00:00:01,161 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:01,181 PPGD_CG.cpp : 112 : info : Norm res 0.0124828
+00:00:01,181 PPGD_CG.cpp : 114 : info : Max rank Res = 12
+00:00:01,774 PPGD_CG.cpp : 127 : info : count = 0 -23.6573 -23.6573
+00:00:01,774 PPGD_CG.cpp : 133 : info : alpha = 2.62038
+00:00:01,779 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:02,162 PPGD_CG.cpp : 149 : info : Particle Number Phi 7.99914
+00:00:02,163 PPGD_CG.cpp : 155 : info : -76.081134
+00:00:02,163 PPGD_CG.cpp : 156 : info : Max rank Phi = 12
+00:00:02,167 PPGD_CG.cpp : 88 : info : ------ Iteration = 2
+00:00:02,167 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:02,167 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:03,231 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:03,231 PPGD_CG.cpp : 101 : info : Project last update
+00:00:03,237 PPGD_CG.cpp : 104 : info : Beta = 1.02428
+00:00:03,237 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:03,258 PPGD_CG.cpp : 112 : info : Norm res 0.0182094
+00:00:03,258 PPGD_CG.cpp : 114 : info : Max rank Res = 24
+00:00:05,065 PPGD_CG.cpp : 127 : info : count = 0 -23.6621 -23.6621
+00:00:05,065 PPGD_CG.cpp : 133 : info : alpha = 2.9159
+00:00:05,079 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:06,264 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00007
+00:00:06,267 PPGD_CG.cpp : 155 : info : -76.092142
+00:00:06,267 PPGD_CG.cpp : 156 : info : Max rank Phi = 24
+00:00:06,275 PPGD_CG.cpp : 88 : info : ------ Iteration = 3
+00:00:06,275 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:06,275 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:10,062 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:10,062 PPGD_CG.cpp : 101 : info : Project last update
+00:00:10,072 PPGD_CG.cpp : 104 : info : Beta = 0.941734
+00:00:10,072 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:10,096 PPGD_CG.cpp : 112 : info : Norm res 0.0244316
+00:00:10,096 PPGD_CG.cpp : 114 : info : Max rank Res = 48
+00:00:17,171 PPGD_CG.cpp : 127 : info : count = 0 -23.6731 -23.6731
+00:00:17,171 PPGD_CG.cpp : 133 : info : alpha = 3.08214
+00:00:17,231 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:00:22,149 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.0012
+00:00:22,160 PPGD_CG.cpp : 155 : info : -76.112629
+00:00:22,160 PPGD_CG.cpp : 156 : info : Max rank Phi = 48
+00:00:22,164 PPGD_CG.cpp : 88 : info : ------ Iteration = 4
+00:00:22,164 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:00:22,164 PPGD_CG.cpp : 92 : info : Project Gradient
+00:00:36,277 PPGD_CG.cpp : 96 : info : Calc update direction
+00:00:36,277 PPGD_CG.cpp : 101 : info : Project last update
+00:00:36,302 PPGD_CG.cpp : 104 : info : Beta = 0.870305
+00:00:36,302 PPGD_CG.cpp : 106 : info : Assemble update
+00:00:36,337 PPGD_CG.cpp : 112 : info : Norm res 0.0300593
+00:00:36,337 PPGD_CG.cpp : 114 : info : Max rank Res = 96
+00:01:09,104 PPGD_CG.cpp : 127 : info : count = 0 -23.6936 -23.6936
+00:01:09,104 PPGD_CG.cpp : 133 : info : alpha = 3.17199
+00:01:09,359 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:01:19,461 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00142
+00:01:19,486 PPGD_CG.cpp : 155 : info : -76.142993
+00:01:19,486 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:01:19,492 PPGD_CG.cpp : 88 : info : ------ Iteration = 5
+00:01:19,492 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:01:19,492 PPGD_CG.cpp : 92 : info : Project Gradient
+00:01:47,498 PPGD_CG.cpp : 96 : info : Calc update direction
+00:01:47,498 PPGD_CG.cpp : 101 : info : Project last update
+00:01:47,545 PPGD_CG.cpp : 104 : info : Beta = 0.726959
+00:01:47,546 PPGD_CG.cpp : 106 : info : Assemble update
+00:01:47,594 PPGD_CG.cpp : 112 : info : Norm res 0.0302941
+00:01:47,594 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:02:51,429 PPGD_CG.cpp : 127 : info : count = 0 -23.7239 -23.7239
+00:02:51,429 PPGD_CG.cpp : 133 : info : alpha = 3.39602
+00:02:51,914 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:03:02,018 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.0009
+00:03:02,043 PPGD_CG.cpp : 155 : info : -76.173613
+00:03:02,043 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:03:02,047 PPGD_CG.cpp : 88 : info : ------ Iteration = 6
+00:03:02,047 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:03:02,047 PPGD_CG.cpp : 92 : info : Project Gradient
+00:03:30,105 PPGD_CG.cpp : 96 : info : Calc update direction
+00:03:30,105 PPGD_CG.cpp : 101 : info : Project last update
+00:03:30,159 PPGD_CG.cpp : 104 : info : Beta = 0.667
+00:03:30,159 PPGD_CG.cpp : 106 : info : Assemble update
+00:03:30,207 PPGD_CG.cpp : 112 : info : Norm res 0.0268171
+00:03:30,208 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:04:34,223 PPGD_CG.cpp : 127 : info : count = 0 -23.7546 -23.7546
+00:04:34,224 PPGD_CG.cpp : 133 : info : alpha = 3.90522
+00:04:34,827 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:04:45,020 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00032
+00:04:45,046 PPGD_CG.cpp : 155 : info : -76.195145
+00:04:45,046 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:04:45,053 PPGD_CG.cpp : 88 : info : ------ Iteration = 7
+00:04:45,053 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:04:45,053 PPGD_CG.cpp : 92 : info : Project Gradient
+00:05:13,117 PPGD_CG.cpp : 96 : info : Calc update direction
+00:05:13,117 PPGD_CG.cpp : 101 : info : Project last update
+00:05:13,172 PPGD_CG.cpp : 104 : info : Beta = 0.64373
+00:05:13,172 PPGD_CG.cpp : 106 : info : Assemble update
+00:05:13,220 PPGD_CG.cpp : 112 : info : Norm res 0.0208666
+00:05:13,220 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:06:17,301 PPGD_CG.cpp : 127 : info : count = 0 -23.7761 -23.7761
+00:06:17,301 PPGD_CG.cpp : 133 : info : alpha = 5.06783
+00:06:17,796 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:06:27,912 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00038
+00:06:27,938 PPGD_CG.cpp : 155 : info : -76.20271
+00:06:27,938 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:06:27,942 PPGD_CG.cpp : 88 : info : ------ Iteration = 8
+00:06:27,942 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:06:27,942 PPGD_CG.cpp : 92 : info : Project Gradient
+00:06:56,068 PPGD_CG.cpp : 96 : info : Calc update direction
+00:06:56,068 PPGD_CG.cpp : 101 : info : Project last update
+00:06:56,123 PPGD_CG.cpp : 104 : info : Beta = 0.794628
+00:06:56,123 PPGD_CG.cpp : 106 : info : Assemble update
+00:06:56,172 PPGD_CG.cpp : 112 : info : Norm res 0.0177342
+00:06:56,172 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:08:00,253 PPGD_CG.cpp : 127 : info : count = 0 -23.7837 -23.7837
+00:08:00,253 PPGD_CG.cpp : 133 : info : alpha = 7.13965
+00:08:00,750 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:08:10,783 PPGD_CG.cpp : 127 : info : count = 1 -23.7768 -23.7837
+00:08:10,783 PPGD_CG.cpp : 133 : info : alpha = 2.4
+00:08:11,277 PPGD_CG.cpp : 142 : info : Calculate new eigenvalue
+00:08:21,425 PPGD_CG.cpp : 149 : info : Particle Number Phi 8.00023
+00:08:21,450 PPGD_CG.cpp : 155 : info : -76.213739
+00:08:21,450 PPGD_CG.cpp : 156 : info : Max rank Phi = 64
+00:08:21,454 PPGD_CG.cpp : 88 : info : ------ Iteration = 9
+00:08:21,454 PPGD_CG.cpp : 89 : info : Projected Gradient step with PC (non symmetric)
+00:08:21,454 PPGD_CG.cpp : 92 : info : Project Gradient
+00:08:49,560 PPGD_CG.cpp : 96 : info : Calc update direction
+00:08:49,560 PPGD_CG.cpp : 101 : info : Project last update
+00:08:49,615 PPGD_CG.cpp : 104 : info : Beta = 0.733415
+00:08:49,615 PPGD_CG.cpp : 106 : info : Assemble update
+00:08:49,664 PPGD_CG.cpp : 112 : info : Norm res 0.0195206
+00:08:49,664 PPGD_CG.cpp : 114 : info : Max rank Res = 128
+00:09:53,594 PPGD_CG.cpp : 127 : info : count = 0 -23.7947 -23.7947
+00:09:53,594 PPGD_CG.cpp : 133 : info : alpha = 3.82868