-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path1.6.0-DEV-a6de8b6186.log
3351 lines (3350 loc) · 226 KB
/
1.6.0-DEV-a6de8b6186.log
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
Julia Version 1.6.0-DEV.587
Commit a6de8b6186 (2020-08-05 14:09 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-9.0.1 (ORCJIT, skylake-avx512)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
[ Info: LEGAL NOTICE: package operations send anonymous data about your system to https://pkg.julialang.org (your current package server), including the operating system and Julia versions you are using, and a random client UUID. Running `Pkg.telemetryinfo()` will show exactly what data is sent. See https://julialang.org/legal/data/ for more details about what this data is used for, how long it is retained, and how to opt out of sending it.
Installed JpegTurbo_jll ──────── v2.0.1+1
Installed nghttp2_jll ────────── v1.40.0+2
Installed XML2_jll ───────────── v2.9.10+1
Installed GZip ───────────────── v0.5.1
Installed GeoFormatTypes ─────── v0.3.0
Installed DataStructures ─────── v0.17.20
Installed Omniscape ──────────── v0.3.0
Installed HTTP ───────────────── v0.8.17
Installed JSON ───────────────── v0.21.0
Installed RecipesBase ────────── v1.0.2
Installed SimpleTraits ───────── v0.9.2
Installed Inflate ────────────── v0.1.2
Installed GEOS_jll ───────────── v3.8.1+0
Installed LittleCMS_jll ──────── v2.9.0+0
Installed GDAL_jll ───────────── v3.0.4+1
Installed EzXML ──────────────── v1.1.0
Installed ArnoldiMethod ──────── v0.0.4
Installed LibCURL_jll ────────── v7.71.1+0
Installed StatsBase ──────────── v0.33.0
Installed MbedTLS ────────────── v1.0.2
Installed GDAL ───────────────── v1.1.3
Installed LightGraphs ────────── v1.3.3
Installed Circuitscape ───────── v5.6.0
Installed CEnum ──────────────── v0.4.1
Installed OpenJpeg_jll ───────── v2.3.1+0
Installed IniFile ────────────── v0.5.0
Installed libpng_jll ─────────── v1.6.37+3
Installed ArchGDAL ───────────── v0.4.1
Installed Libiconv_jll ───────── v1.16.0+5
Installed Compat ─────────────── v3.13.0
Installed DataAPI ────────────── v1.3.0
Installed AlgebraicMultigrid ─── v0.3.0
Installed SimpleWeightedGraphs ─ v1.1.1
Installed MacroTools ─────────── v0.5.5
Installed DataStreams ────────── v0.4.2
Installed StaticArrays ───────── v0.12.4
Installed IterativeSolvers ───── v0.8.4
Installed Parsers ────────────── v1.0.7
Installed GitHub ─────────────── v5.1.7
Installed Missings ───────────── v0.4.3
Installed Mocking ────────────── v0.7.1
Installed ExprTools ──────────── v0.1.1
Installed Zstd_jll ───────────── v1.4.5+0
Installed WeakRefStrings ─────── v0.6.2
Installed Zlib_jll ───────────── v1.2.11+15
Installed LibSSH2_jll ────────── v1.9.0+3
Installed GeoInterface ───────── v0.5.4
Installed OrderedCollections ─── v1.3.0
Installed TimeZones ──────────── v1.3.1
Installed CompatHelper ───────── v1.13.3
Installed SortingAlgorithms ──── v0.3.1
Installed Libtiff_jll ────────── v4.1.0+0
Installed SQLite_jll ─────────── v3.32.3+0
Installed MbedTLS_jll ────────── v2.16.6+1
Installed PROJ_jll ───────────── v7.0.1+0
Updating `~/.julia/environments/v1.6/Project.toml`
[a38d70fc] + Omniscape v0.3.0
Updating `~/.julia/environments/v1.6/Manifest.toml`
[2169fc97] + AlgebraicMultigrid v0.3.0
[c9ce4bd3] + ArchGDAL v0.4.1
[ec485272] + ArnoldiMethod v0.0.4
[fa961155] + CEnum v0.4.1
[2b7a1792] + Circuitscape v5.6.0
[34da2185] + Compat v3.13.0
[aa819f21] + CompatHelper v1.13.3
[9a962f9c] + DataAPI v1.3.0
[9a8bc11e] + DataStreams v0.4.2
[864edb3b] + DataStructures v0.17.20
[e2ba6199] + ExprTools v0.1.1
[8f5d6c58] + EzXML v1.1.0
[add2ef01] + GDAL v1.1.3
[a7073274] + GDAL_jll v3.0.4+1
[d604d12d] + GEOS_jll v3.8.1+0
[92fee26a] + GZip v0.5.1
[68eda718] + GeoFormatTypes v0.3.0
[cf35fbd7] + GeoInterface v0.5.4
[bc5e4493] + GitHub v5.1.7
[cd3eb016] + HTTP v0.8.17
[d25df0c9] + Inflate v0.1.2
[83e8ac13] + IniFile v0.5.0
[42fd0dbc] + IterativeSolvers v0.8.4
[682c06a0] + JSON v0.21.0
[aacddb02] + JpegTurbo_jll v2.0.1+1
[deac9b47] + LibCURL_jll v7.71.1+0
[29816b5a] + LibSSH2_jll v1.9.0+3
[94ce4f54] + Libiconv_jll v1.16.0+5
[89763e89] + Libtiff_jll v4.1.0+0
[093fc24a] + LightGraphs v1.3.3
[d3a379c0] + LittleCMS_jll v2.9.0+0
[1914dd2f] + MacroTools v0.5.5
[739be429] + MbedTLS v1.0.2
[c8ffd9c3] + MbedTLS_jll v2.16.6+1
[e1d29d7a] + Missings v0.4.3
[78c3b35d] + Mocking v0.7.1
[a38d70fc] + Omniscape v0.3.0
[643b3616] + OpenJpeg_jll v2.3.1+0
[bac558e1] + OrderedCollections v1.3.0
[58948b4f] + PROJ_jll v7.0.1+0
[69de0a69] + Parsers v1.0.7
[3cdcf5f2] + RecipesBase v1.0.2
[76ed43ae] + SQLite_jll v3.32.3+0
[699a6c99] + SimpleTraits v0.9.2
[47aef6b3] + SimpleWeightedGraphs v1.1.1
[a2af1166] + SortingAlgorithms v0.3.1
[90137ffa] + StaticArrays v0.12.4
[2913bbd2] + StatsBase v0.33.0
[f269a46b] + TimeZones v1.3.1
[ea10d353] + WeakRefStrings v0.6.2
[02c8fc9c] + XML2_jll v2.9.10+1
[83775a58] + Zlib_jll v1.2.11+15
[3161d3a3] + Zstd_jll v1.4.5+0
[b53b4c65] + libpng_jll v1.6.37+3
[8e850ede] + nghttp2_jll v1.40.0+2
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[b77e0a4c] + InteractiveUtils
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[1a1011a3] + SharedArrays
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building TimeZones → `~/.julia/packages/TimeZones/cAGJs/deps/build.log`
Testing Omniscape
Status `/tmp/jl_mIkUn8/Project.toml`
[2b7a1792] Circuitscape v5.6.0
[a38d70fc] Omniscape v0.3.0
[2913bbd2] StatsBase v0.33.0
[37e2e46d] LinearAlgebra
[10745b16] Statistics
[8dfed614] Test
Status `/tmp/jl_mIkUn8/Manifest.toml`
[2169fc97] AlgebraicMultigrid v0.3.0
[c9ce4bd3] ArchGDAL v0.4.1
[ec485272] ArnoldiMethod v0.0.4
[fa961155] CEnum v0.4.1
[2b7a1792] Circuitscape v5.6.0
[34da2185] Compat v3.13.0
[aa819f21] CompatHelper v1.13.3
[9a962f9c] DataAPI v1.3.0
[9a8bc11e] DataStreams v0.4.2
[864edb3b] DataStructures v0.17.20
[e2ba6199] ExprTools v0.1.1
[8f5d6c58] EzXML v1.1.0
[add2ef01] GDAL v1.1.3
[a7073274] GDAL_jll v3.0.4+1
[d604d12d] GEOS_jll v3.8.1+0
[92fee26a] GZip v0.5.1
[68eda718] GeoFormatTypes v0.3.0
[cf35fbd7] GeoInterface v0.5.4
[bc5e4493] GitHub v5.1.7
[cd3eb016] HTTP v0.8.17
[d25df0c9] Inflate v0.1.2
[83e8ac13] IniFile v0.5.0
[42fd0dbc] IterativeSolvers v0.8.4
[682c06a0] JSON v0.21.0
[aacddb02] JpegTurbo_jll v2.0.1+1
[deac9b47] LibCURL_jll v7.71.1+0
[29816b5a] LibSSH2_jll v1.9.0+3
[94ce4f54] Libiconv_jll v1.16.0+5
[89763e89] Libtiff_jll v4.1.0+0
[093fc24a] LightGraphs v1.3.3
[d3a379c0] LittleCMS_jll v2.9.0+0
[1914dd2f] MacroTools v0.5.5
[739be429] MbedTLS v1.0.2
[c8ffd9c3] MbedTLS_jll v2.16.6+1
[e1d29d7a] Missings v0.4.3
[78c3b35d] Mocking v0.7.1
[a38d70fc] Omniscape v0.3.0
[643b3616] OpenJpeg_jll v2.3.1+0
[bac558e1] OrderedCollections v1.3.0
[58948b4f] PROJ_jll v7.0.1+0
[69de0a69] Parsers v1.0.7
[3cdcf5f2] RecipesBase v1.0.2
[76ed43ae] SQLite_jll v3.32.3+0
[699a6c99] SimpleTraits v0.9.2
[47aef6b3] SimpleWeightedGraphs v1.1.1
[a2af1166] SortingAlgorithms v0.3.1
[90137ffa] StaticArrays v0.12.4
[2913bbd2] StatsBase v0.33.0
[f269a46b] TimeZones v1.3.1
[ea10d353] WeakRefStrings v0.6.2
[02c8fc9c] XML2_jll v2.9.10+1
[83775a58] Zlib_jll v1.2.11+15
[3161d3a3] Zstd_jll v1.4.5+0
[b53b4c65] libpng_jll v1.6.37+3
[8e850ede] nghttp2_jll v1.40.0+2
[2a0f44e3] Base64
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[b77e0a4c] InteractiveUtils
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[1a1011a3] SharedArrays
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
[ Info: conditional connectivity tests passed
[ Info: target tests passed
Starting up Omniscape. Running in serial using 1 worker.
Calculating block artifact correction array
[ Info: 2020-08-06 02:40:58 : Time taken to construct preconditioner = 3.486770744 seconds
[ Info: 2020-08-06 02:40:58 : Time taken to solve linear system = 0.009244829 seconds
[ Info: 2020-08-06 02:40:58 : Time taken to construct preconditioner = 0.000488172 seconds
[ Info: 2020-08-06 02:40:58 : Time taken to solve linear system = 0.0003842 seconds
Solving targets
[ Info: Solving target 1 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000367386 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000166869 seconds
[ Info: Calculating flow potential for target 1 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000344544 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000171365 seconds
[ Info: Solving target 2 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000287375 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000230068 seconds
[ Info: Calculating flow potential for target 2 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000321928 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000254343 seconds
[ Info: Solving target 3 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000269493 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000231402 seconds
[ Info: Calculating flow potential for target 3 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00051171 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000340913 seconds
[ Info: Solving target 4 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000306078 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000244702 seconds
[ Info: Calculating flow potential for target 4 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000388232 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000325452 seconds
[ Info: Solving target 5 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000317861 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000269589 seconds
[ Info: Calculating flow potential for target 5 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000359333 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.00032724 seconds
[ Info: Solving target 6 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000294433 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000286621 seconds
[ Info: Calculating flow potential for target 6 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000377957 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000316461 seconds
[ Info: Solving target 7 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000306593 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000329085 seconds
[ Info: Calculating flow potential for target 7 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000340363 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000325881 seconds
[ Info: Solving target 8 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000319857 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000294747 seconds
[ Info: Calculating flow potential for target 8 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000373543 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000346639 seconds
[ Info: Solving target 9 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000319893 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000169032 seconds
[ Info: Calculating flow potential for target 9 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000358673 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000254841 seconds
[ Info: Solving target 10 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000324762 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.00020821 seconds
[ Info: Calculating flow potential for target 10 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00034656 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000241296 seconds
[ Info: Solving target 11 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000414673 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000363491 seconds
[ Info: Calculating flow potential for target 11 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000468806 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000358175 seconds
[ Info: Solving target 12 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000474698 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000345962 seconds
[ Info: Calculating flow potential for target 12 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.100426157 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000429361 seconds
[ Info: Solving target 13 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000402249 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000398028 seconds
[ Info: Calculating flow potential for target 13 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000485131 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000430424 seconds
[ Info: Solving target 14 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000399919 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000427201 seconds
[ Info: Calculating flow potential for target 14 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000600905 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000394645 seconds
[ Info: Solving target 15 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000378466 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000393932 seconds
[ Info: Calculating flow potential for target 15 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00046843 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000428025 seconds
[ Info: Solving target 16 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000392396 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000417876 seconds
[ Info: Calculating flow potential for target 16 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00048534 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000434399 seconds
[ Info: Solving target 17 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000375044 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000404663 seconds
[ Info: Calculating flow potential for target 17 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000481032 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000431963 seconds
[ Info: Solving target 18 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000314102 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000266325 seconds
[ Info: Calculating flow potential for target 18 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000372293 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000339025 seconds
[ Info: Solving target 19 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000291162 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000252837 seconds
[ Info: Calculating flow potential for target 19 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000330943 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000306224 seconds
[ Info: Solving target 20 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000388827 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000336828 seconds
[ Info: Calculating flow potential for target 20 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000470081 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000438995 seconds
[ Info: Solving target 21 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000421072 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.00036621 seconds
[ Info: Calculating flow potential for target 21 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000566354 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000492997 seconds
[ Info: Solving target 22 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000422702 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000394935 seconds
[ Info: Calculating flow potential for target 22 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000581275 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000543934 seconds
[ Info: Solving target 23 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000413207 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000424086 seconds
[ Info: Calculating flow potential for target 23 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000562784 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000523784 seconds
[ Info: Solving target 24 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00043599 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000454386 seconds
[ Info: Calculating flow potential for target 24 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000553912 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000514342 seconds
[ Info: Solving target 25 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000453624 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000507711 seconds
[ Info: Calculating flow potential for target 25 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000593649 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000551619 seconds
[ Info: Solving target 26 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00045822 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000454767 seconds
[ Info: Calculating flow potential for target 26 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000599862 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000659792 seconds
[ Info: Solving target 27 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000409706 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000458864 seconds
[ Info: Calculating flow potential for target 27 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000505786 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000445431 seconds
[ Info: Solving target 28 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000302271 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000226892 seconds
[ Info: Calculating flow potential for target 28 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00036207 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000510196 seconds
[ Info: Solving target 29 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000411194 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000538351 seconds
[ Info: Calculating flow potential for target 29 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000511099 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000577111 seconds
[ Info: Solving target 30 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000447877 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000593 seconds
[ Info: Calculating flow potential for target 30 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000579833 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000690455 seconds
[ Info: Solving target 31 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.00051974 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.0005781 seconds
[ Info: Calculating flow potential for target 31 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000710597 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000671439 seconds
[ Info: Solving target 32 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000513528 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000485062 seconds
[ Info: Calculating flow potential for target 32 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000733455 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000743182 seconds
[ Info: Solving target 33 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000513805 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000573267 seconds
[ Info: Calculating flow potential for target 33 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000714694 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000579423 seconds
[ Info: Solving target 34 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000511171 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000563992 seconds
[ Info: Calculating flow potential for target 34 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000700844 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000685529 seconds
[ Info: Solving target 35 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000508667 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000612234 seconds
[ Info: Calculating flow potential for target 35 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000684802 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000691394 seconds
[ Info: Solving target 36 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000448458 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000518103 seconds
[ Info: Calculating flow potential for target 36 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000554585 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000571701 seconds
[ Info: Solving target 37 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000341866 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000387451 seconds
[ Info: Calculating flow potential for target 37 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000430326 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000423815 seconds
[ Info: Solving target 38 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000455877 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000476831 seconds
[ Info: Calculating flow potential for target 38 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000541748 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000532088 seconds
[ Info: Solving target 39 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000495231 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000564454 seconds
[ Info: Calculating flow potential for target 39 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000713042 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000692516 seconds
[ Info: Solving target 40 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000492617 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000506405 seconds
[ Info: Calculating flow potential for target 40 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000694398 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000634229 seconds
[ Info: Solving target 41 of 81
[ Info: 2020-08-06 02:40:59 : Time taken to construct preconditioner = 0.000522668 seconds
[ Info: 2020-08-06 02:40:59 : Time taken to solve linear system = 0.000587923 seconds
[ Info: Calculating flow potential for target 41 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.00071954 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000715338 seconds
[ Info: Solving target 42 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000514009 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000576604 seconds
[ Info: Calculating flow potential for target 42 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000718049 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000671965 seconds
[ Info: Solving target 43 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000491473 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000651345 seconds
[ Info: Calculating flow potential for target 43 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000700934 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000686657 seconds
[ Info: Solving target 44 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000488218 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.00062403 seconds
[ Info: Calculating flow potential for target 44 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000682896 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000678066 seconds
[ Info: Solving target 45 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000447028 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000519978 seconds
[ Info: Calculating flow potential for target 45 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000565608 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000592517 seconds
[ Info: Solving target 46 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000346581 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000383739 seconds
[ Info: Calculating flow potential for target 46 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000436074 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000471355 seconds
[ Info: Solving target 47 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000458523 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000459589 seconds
[ Info: Calculating flow potential for target 47 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.00053955 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000588036 seconds
[ Info: Solving target 48 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000499114 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000647189 seconds
[ Info: Calculating flow potential for target 48 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000697134 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000690391 seconds
[ Info: Solving target 49 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000533488 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000521491 seconds
[ Info: Calculating flow potential for target 49 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.00069925 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000664279 seconds
[ Info: Solving target 50 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000503834 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000662227 seconds
[ Info: Calculating flow potential for target 50 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000701759 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000660906 seconds
[ Info: Solving target 51 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000518674 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000683121 seconds
[ Info: Calculating flow potential for target 51 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000694624 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000673099 seconds
[ Info: Solving target 52 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.00050602 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000768649 seconds
[ Info: Calculating flow potential for target 52 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000685784 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000684599 seconds
[ Info: Solving target 53 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.00048153 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000601164 seconds
[ Info: Calculating flow potential for target 53 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000667331 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000669048 seconds
[ Info: Solving target 54 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000429239 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000542128 seconds
[ Info: Calculating flow potential for target 54 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000569261 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000547509 seconds
[ Info: Solving target 55 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000363237 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000407282 seconds
[ Info: Calculating flow potential for target 55 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.0004257 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.0004726 seconds
[ Info: Solving target 56 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000481146 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000511668 seconds
[ Info: Calculating flow potential for target 56 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000576672 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000593244 seconds
[ Info: Solving target 57 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000522213 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.00053223 seconds
[ Info: Calculating flow potential for target 57 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000707444 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000663956 seconds
[ Info: Solving target 58 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000476709 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000637079 seconds
[ Info: Calculating flow potential for target 58 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000700761 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.00071618 seconds
[ Info: Solving target 59 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000551924 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000670269 seconds
[ Info: Calculating flow potential for target 59 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000713425 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.00072814 seconds
[ Info: Solving target 60 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000473723 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000643895 seconds
[ Info: Calculating flow potential for target 60 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000691762 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000658121 seconds
[ Info: Solving target 61 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000527754 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.00059919 seconds
[ Info: Calculating flow potential for target 61 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.00070844 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000760198 seconds
[ Info: Solving target 62 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000523165 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000653015 seconds
[ Info: Calculating flow potential for target 62 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000704717 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000713964 seconds
[ Info: Solving target 63 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000457621 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000574143 seconds
[ Info: Calculating flow potential for target 63 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000562743 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000583308 seconds
[ Info: Solving target 64 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000343993 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.00036117 seconds
[ Info: Calculating flow potential for target 64 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000420581 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000484404 seconds
[ Info: Solving target 65 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000442659 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000436482 seconds
[ Info: Calculating flow potential for target 65 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000575545 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000552487 seconds
[ Info: Solving target 66 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000513038 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000613351 seconds
[ Info: Calculating flow potential for target 66 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000707651 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000719451 seconds
[ Info: Solving target 67 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000519592 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000606862 seconds
[ Info: Calculating flow potential for target 67 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000671816 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000656153 seconds
[ Info: Solving target 68 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000526707 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.00061504 seconds
[ Info: Calculating flow potential for target 68 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.0006598 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000693934 seconds
[ Info: Solving target 69 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000525864 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000627156 seconds
[ Info: Calculating flow potential for target 69 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000676152 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000639118 seconds
[ Info: Solving target 70 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000518736 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000574885 seconds
[ Info: Calculating flow potential for target 70 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000716333 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000668121 seconds
[ Info: Solving target 71 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000519842 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000578995 seconds
[ Info: Calculating flow potential for target 71 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000714981 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000812984 seconds
[ Info: Solving target 72 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000465941 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000476291 seconds
[ Info: Calculating flow potential for target 72 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000570743 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000571551 seconds
[ Info: Solving target 73 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000310059 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000340001 seconds
[ Info: Calculating flow potential for target 73 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000336529 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000389047 seconds
[ Info: Solving target 74 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000393704 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000459776 seconds
[ Info: Calculating flow potential for target 74 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000468668 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000473396 seconds
[ Info: Solving target 75 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000452214 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000497569 seconds
[ Info: Calculating flow potential for target 75 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000554624 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000558598 seconds
[ Info: Solving target 76 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000459137 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000503404 seconds
[ Info: Calculating flow potential for target 76 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000551446 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000565267 seconds
[ Info: Solving target 77 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000479123 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000482368 seconds
[ Info: Calculating flow potential for target 77 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000581001 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000567669 seconds
[ Info: Solving target 78 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000469286 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000580697 seconds
[ Info: Calculating flow potential for target 78 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000572952 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000562918 seconds
[ Info: Solving target 79 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000473499 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000514219 seconds
[ Info: Calculating flow potential for target 79 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000568137 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000531576 seconds
[ Info: Solving target 80 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000475671 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000432642 seconds
[ Info: Calculating flow potential for target 80 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000571619 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000529375 seconds
[ Info: Solving target 81 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000369312 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000343293 seconds
[ Info: Calculating flow potential for target 81 of 81
[ Info: 2020-08-06 02:41:00 : Time taken to construct preconditioner = 0.000494811 seconds
[ Info: 2020-08-06 02:41:00 : Time taken to solve linear system = 0.000468515 seconds
Done
Time taken to complete job: 30.7417 seconds
Outputs written to /home/pkgeval/.julia/packages/Omniscape/ZVGgl/test/test4
Starting up Omniscape. Using 2 workers in parallel.
Calculating block artifact correction array
[ Info: 2020-08-06 02:41:01 : Time taken to construct preconditioner = 0.000367973 seconds
[ Info: 2020-08-06 02:41:01 : Time taken to solve linear system = 0.000157731 seconds
[ Info: 2020-08-06 02:41:01 : Time taken to construct preconditioner = 0.000411218 seconds
[ Info: 2020-08-06 02:41:01 : Time taken to solve linear system = 0.000421959 seconds
Solving targets
[ Info: Solving target 51 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000441264 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000246126 seconds
[ Info: Solving target 52 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000410901 seconds
[ Info: Solving target 1 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000237323 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000216166 seconds
[ Info: Solving target 53 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 8.6352e-5 seconds
[ Info: Solving target 2 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000388382 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000193374 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000276493 seconds
[ Info: Solving target 54 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000445541 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002107209 seconds
[ Info: Solving target 3 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000260517 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001693315 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000546093 seconds
[ Info: Solving target 55 of 81
[ Info: Solving target 4 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000260421 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000316094 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001242675 seconds
[ Info: Solving target 5 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000742233 seconds
[ Info: Solving target 56 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000271698 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000387211 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.00144287 seconds
[ Info: Solving target 6 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.00023005 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.00189415 seconds
[ Info: Solving target 57 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000383995 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002141555 seconds
[ Info: Solving target 7 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000250174 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001672776 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.00067821 seconds
[ Info: Solving target 58 of 81
[ Info: Solving target 8 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000279897 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000406295 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001332104 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000808597 seconds
[ Info: Solving target 9 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.00023339 seconds
[ Info: Solving target 59 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000391132 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001744126 seconds
[ Info: Solving target 10 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000245582 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001720993 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000592495 seconds
[ Info: Solving target 60 of 81
[ Info: Solving target 11 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000384314 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.001227915 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000240523 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002466684 seconds
[ Info: Solving target 12 of 81
[ Info: Solving target 61 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000268453 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000389982 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001627528 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000873056 seconds
[ Info: Solving target 13 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000271462 seconds
[ Info: Solving target 62 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000380863 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001941795 seconds
[ Info: Solving target 14 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000258898 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001919003 seconds
[ Info: Solving target 63 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000401264 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002416682 seconds
[ Info: Solving target 15 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000267946 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001948836 seconds
[ Info: Solving target 64 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001098462 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000311533 seconds
[ Info: Solving target 16 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000270044 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001464532 seconds
[ Info: Solving target 65 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000911907 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000396159 seconds
[ Info: Solving target 17 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000271434 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001546697 seconds
[ Info: Solving target 66 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001010786 seconds
[ Info: Solving target 18 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000364718 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000340838 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001515873 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000797088 seconds
[ Info: Solving target 19 of 81
[ Info: Solving target 67 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000236241 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000398094 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001229433 seconds
[ Info: Solving target 20 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000850818 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000320263 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000217788 seconds
[ Info: Solving target 68 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000405487 seconds
[ Info: Solving target 21 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000376791 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.00021873 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000238569 seconds
[ Info: Solving target 22 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.0003812 seconds
[ Info: Solving target 69 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000793037 seconds
[ Info: Solving target 23 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000386705 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000384305 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001675506 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000892687 seconds
[ Info: Solving target 70 of 81
[ Info: Solving target 24 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000386472 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000340068 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001547289 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000801202 seconds
[ Info: Solving target 25 of 81
[ Info: Solving target 71 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000410257 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000405874 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001655483 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000794238 seconds
[ Info: Solving target 26 of 81
[ Info: Solving target 72 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.00034907 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000376553 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001450287 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.00068687 seconds
[ Info: Solving target 27 of 81
[ Info: Solving target 73 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000355904 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000293233 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001278151 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000557602 seconds
[ Info: Solving target 28 of 81
[ Info: Solving target 74 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000254401 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.00040533 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001397727 seconds
[ Info: Solving target 29 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000938163 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000381341 seconds
[ Info: Solving target 75 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000396768 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002045324 seconds
[ Info: Solving target 30 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001160871 seconds
[ Info: Solving target 76 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000647325 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000453481 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001706708 seconds
[ Info: Solving target 31 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000365862 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002159497 seconds
[ Info: Solving target 77 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000426671 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002347954 seconds
[ Info: Solving target 32 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000376829 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.002242518 seconds
[ Info: Solving target 78 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001199102 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000388722 seconds
[ Info: Solving target 33 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000352458 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001864768 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000826174 seconds
[ Info: Solving target 79 of 81
[ Info: Solving target 34 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000406553 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000341155 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001479672 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000784214 seconds
[ Info: Solving target 80 of 81
[ Info: Solving target 35 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000399584 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000383588 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.00038358 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001881751 seconds
[ Info: Solving target 81 of 81
[ Info: Solving target 36 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000322405 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000408382 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.001715843 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000821505 seconds
[ Info: Solving target 37 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000292611 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000174669 seconds
[ Info: Solving target 38 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000366501 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000316801 seconds
[ Info: Solving target 39 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000359752 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000356364 seconds
[ Info: Solving target 40 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000364733 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000355042 seconds
[ Info: Solving target 41 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000428803 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000351133 seconds
[ Info: Solving target 42 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000363196 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000384821 seconds
[ Info: Solving target 43 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000384048 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000363882 seconds
[ Info: Solving target 44 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.00035437 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000356536 seconds
[ Info: Solving target 45 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.00040818 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000407025 seconds
[ Info: Solving target 46 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000256976 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000145226 seconds
[ Info: Solving target 47 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000353226 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000407853 seconds
[ Info: Solving target 48 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000380287 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000396078 seconds
[ Info: Solving target 49 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000384102 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000409456 seconds
[ Info: Solving target 50 of 81
[ Info: 2020-08-06 02:41:02 : Time taken to construct preconditioner = 0.000345743 seconds
[ Info: 2020-08-06 02:41:02 : Time taken to solve linear system = 0.000344506 seconds
Done
Time taken to complete job: 1.5969 seconds
Outputs written to /home/pkgeval/.julia/packages/Omniscape/ZVGgl/test/test5
Starting up Omniscape. Using 2 workers in parallel.
Calculating block artifact correction array
[ Info: 2020-08-06 02:41:03 : Time taken to construct preconditioner = 0.000385333 seconds
[ Info: 2020-08-06 02:41:03 : Time taken to solve linear system = 0.000226256 seconds
[ Info: 2020-08-06 02:41:03 : Time taken to construct preconditioner = 0.000347072 seconds
[ Info: 2020-08-06 02:41:03 : Time taken to solve linear system = 0.000141909 seconds
Solving targets
[ Info: Solving target 1 of 81
[ Info: Solving target 51 of 81