-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.6.0-DEV-444aa87348.log
11605 lines (11604 loc) · 706 KB
/
1.6.0-DEV-444aa87348.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.1274
Commit 444aa87348 (2020-10-17 22:11 UTC)
Platform Info:
OS: Linux (x86_64-pc-linux-gnu)
CPU: AMD EPYC 7502 32-Core Processor
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-11.0.0 (ORCJIT, znver2)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
JULIA_MAX_NUM_PRECOMPILE_FILES = 9223372036854775807
Resolving package versions...
Installed GZip ──────────────────────── v0.5.1
Installed DataValueInterfaces ───────── v1.0.0
Installed GEOS_jll ──────────────────── v3.8.1+0
Installed ArnoldiMethod ─────────────── v0.0.4
Installed StaticArrays ──────────────── v0.12.4
Installed CompatHelper ──────────────── v1.16.2
Installed LightGraphs ───────────────── v1.3.0
Installed MbedTLS_jll ───────────────── v2.16.8+0
Installed OpenJpeg_jll ──────────────── v2.3.1+0
Installed Mocking ───────────────────── v0.7.1
Installed PROJ_jll ──────────────────── v7.0.1+0
Installed RecipesBase ───────────────── v1.1.0
Installed EzXML ─────────────────────── v1.1.0
Installed XML2_jll ──────────────────── v2.9.10+3
Installed Inflate ───────────────────── v0.1.2
Installed SimpleTraits ──────────────── v0.9.3
Installed Zlib_jll ──────────────────── v1.2.11+18
Installed GDAL ──────────────────────── v1.1.5
Installed Parsers ───────────────────── v1.0.11
Installed ArchGDAL ──────────────────── v0.5.2
Installed SimpleWeightedGraphs ──────── v1.1.1
Installed JLLWrappers ───────────────── v1.1.2
Installed Compat ────────────────────── v3.20.0
Installed DataAPI ───────────────────── v1.3.0
Installed DataStructures ────────────── v0.18.7
Installed IteratorInterfaceExtensions ─ v1.0.0
Installed Libiconv_jll ──────────────── v1.16.0+7
Installed CEnum ─────────────────────── v0.4.1
Installed DiskArrays ────────────────── v0.2.6
Installed LittleCMS_jll ─────────────── v2.9.0+0
Installed Libtiff_jll ───────────────── v4.1.0+2
Installed libpng_jll ────────────────── v1.6.37+5
Installed GeoFormatTypes ────────────── v0.3.0
Installed TableTraits ───────────────── v1.0.0
Installed TimeZones ─────────────────── v1.4.0
Installed JSON ──────────────────────── v0.21.1
Installed Zstd_jll ──────────────────── v1.4.5+2
Installed AlgebraicMultigrid ────────── v0.3.0
Installed IterativeSolvers ──────────── v0.8.4
Installed GeoInterface ──────────────── v0.5.4
Installed GitHub ────────────────────── v5.1.7
Installed ExprTools ─────────────────── v0.1.3
Installed MbedTLS ───────────────────── v1.0.2
Installed JpegTurbo_jll ─────────────── v2.0.1+3
Installed IniFile ───────────────────── v0.5.0
Installed Circuitscape ──────────────── v5.7.1
Installed OrderedCollections ────────── v1.3.1
Installed Tables ────────────────────── v1.1.0
Installed HTTP ──────────────────────── v0.8.19
Installed MacroTools ────────────────── v0.5.5
Installed SQLite_jll ────────────────── v3.32.3+0
Installed GDAL_jll ──────────────────── v3.0.4+2
Updating `~/.julia/environments/v1.6/Project.toml`
[2b7a1792] + Circuitscape v5.7.1
Updating `~/.julia/environments/v1.6/Manifest.toml`
[2169fc97] + AlgebraicMultigrid v0.3.0
[c9ce4bd3] + ArchGDAL v0.5.2
[ec485272] + ArnoldiMethod v0.0.4
[fa961155] + CEnum v0.4.1
[2b7a1792] + Circuitscape v5.7.1
[34da2185] + Compat v3.20.0
[aa819f21] + CompatHelper v1.16.2
[9a962f9c] + DataAPI v1.3.0
[864edb3b] + DataStructures v0.18.7
[e2d170a0] + DataValueInterfaces v1.0.0
[3c3547ce] + DiskArrays v0.2.6
[e2ba6199] + ExprTools v0.1.3
[8f5d6c58] + EzXML v1.1.0
[add2ef01] + GDAL v1.1.5
[a7073274] + GDAL_jll v3.0.4+2
[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.19
[d25df0c9] + Inflate v0.1.2
[83e8ac13] + IniFile v0.5.0
[42fd0dbc] + IterativeSolvers v0.8.4
[82899510] + IteratorInterfaceExtensions v1.0.0
[692b3bcd] + JLLWrappers v1.1.2
[682c06a0] + JSON v0.21.1
[aacddb02] + JpegTurbo_jll v2.0.1+3
[94ce4f54] + Libiconv_jll v1.16.0+7
[89763e89] + Libtiff_jll v4.1.0+2
[093fc24a] + LightGraphs v1.3.0
[d3a379c0] + LittleCMS_jll v2.9.0+0
[1914dd2f] + MacroTools v0.5.5
[739be429] + MbedTLS v1.0.2
[c8ffd9c3] + MbedTLS_jll v2.16.8+0
[78c3b35d] + Mocking v0.7.1
[643b3616] + OpenJpeg_jll v2.3.1+0
[bac558e1] + OrderedCollections v1.3.1
[58948b4f] + PROJ_jll v7.0.1+0
[69de0a69] + Parsers v1.0.11
[3cdcf5f2] + RecipesBase v1.1.0
[76ed43ae] + SQLite_jll v3.32.3+0
[699a6c99] + SimpleTraits v0.9.3
[47aef6b3] + SimpleWeightedGraphs v1.1.1
[90137ffa] + StaticArrays v0.12.4
[3783bdb8] + TableTraits v1.0.0
[bd369af6] + Tables v1.1.0
[f269a46b] + TimeZones v1.4.0
[02c8fc9c] + XML2_jll v2.9.10+3
[83775a58] + Zlib_jll v1.2.11+18
[3161d3a3] + Zstd_jll v1.4.5+2
[b53b4c65] + libpng_jll v1.6.37+5
[0dad84c5] + ArgTools
[56f22d72] + Artifacts
[2a0f44e3] + Base64
[ade2ca70] + Dates
[8bb1440f] + DelimitedFiles
[8ba89e20] + Distributed
[f43a241f] + Downloads
[b77e0a4c] + InteractiveUtils
[b27032c2] + LibCURL
[deac9b47] + LibCURL_jll
[76f85450] + LibGit2
[8f399da3] + Libdl
[37e2e46d] + LinearAlgebra
[56ddb016] + Logging
[d6f4376e] + Markdown
[a63ad114] + Mmap
[14a3606d] + MozillaCACerts_jll
[44cfe95a] + Pkg
[de0858da] + Printf
[3fa0cd96] + REPL
[9a3f8284] + Random
[ea8e919c] + SHA
[9e88b42a] + Serialization
[1a1011a3] + SharedArrays
[6462fe0b] + Sockets
[2f01184e] + SparseArrays
[10745b16] + Statistics
[fa267f1f] + TOML
[8dfed614] + Test
[cf7118a7] + UUIDs
[4ec0a83e] + Unicode
Building TimeZones → `~/.julia/scratchspaces/44cfe95a-1eb2-52ea-b672-e2afdf69b78f/2c48caca8f3912857973590a9757e1f86cbbff81/build.log`
Precompiling project... (tip: to disable auto-precompilation set ENV["JULIA_PKG_PRECOMPILE_AUTO"]=0)
[90m[32m ✓ [39mIteratorInterfaceExtensions[39m
[90m[32m ✓ [39mDataValueInterfaces[39m
[90m[32m ✓ [39mCEnum[39m
[90m[32m ✓ [39mIniFile[39m
[90m[32m ✓ [39mDataAPI[39m
[90m[32m ✓ [39mJLLWrappers[39m
[90m[32m ✓ [39mGeoFormatTypes[39m
[90m[32m ✓ [39mOrderedCollections[39m
[90m[32m ✓ [39mInflate[39m
[90m[32m ✓ [39mDiskArrays[39m
[90m[32m ✓ [39mGZip[39m
[90m[32m ✓ [39mTableTraits[39m
[90m[32m ✓ [39mCompat[39m
[90m[32m ✓ [39mGeoInterface[39m
[90m[32m ✓ [39mMbedTLS_jll[39m
[90m[32m ✓ [39mGEOS_jll[39m
[90m[32m ✓ [39mTables[39m
[90m[32m ✓ [39mZstd_jll[39m
[90m[32m ✓ [39mLibiconv_jll[39m
[90m[32m ✓ [39mZlib_jll[39m
[90m[32m ✓ [39mJpegTurbo_jll[39m
[90m[32m ✓ [39mIterativeSolvers[39m
[90m[32m ✓ [39mMbedTLS[39m
[90m[32m ✓ [39mMacroTools[39m
[90m[32m ✓ [39mParsers[39m
[90m[32m ✓ [39mSQLite_jll[39m
[90m[32m ✓ [39mlibpng_jll[39m
[90m[32m ✓ [39mXML2_jll[39m
[90m[32m ✓ [39mLibtiff_jll[39m
[90m[32m ✓ [39mJSON[39m
[90m[32m ✓ [39mEzXML[39m
[90m[32m ✓ [39mLittleCMS_jll[39m
[90m[32m ✓ [39mSimpleTraits[39m
[90m[32m ✓ [39mPROJ_jll[39m
[90m[32m ✓ [39mStaticArrays[39m
[90m[32m ✓ [39mHTTP[39m
[90m[32m ✓ [39mOpenJpeg_jll[39m
[90m[32m ✓ [39mDataStructures[39m
[90m[32m ✓ [39mTimeZones[39m
[90m[32m ✓ [39mArnoldiMethod[39m
[90m[32m ✓ [39mGDAL_jll[39m
[90m[32m ✓ [39mGitHub[39m
[90m[32m ✓ [39mCompatHelper[39m
[90m[32m ✓ [39mGDAL[39m
[90m[32m ✓ [39mAlgebraicMultigrid[39m
[90m[32m ✓ [39mArchGDAL[39m
[90m[32m ✓ [39mLightGraphs[39m
[90m[32m ✓ [39mSimpleWeightedGraphs[39m
48 dependencies successfully precompiled (4 already precompiled)
Testing Circuitscape
Status `/tmp/jl_tTrRhX/Project.toml`
[2169fc97] AlgebraicMultigrid v0.3.0
[c9ce4bd3] ArchGDAL v0.5.2
[2b7a1792] Circuitscape v5.7.1
[92fee26a] GZip v0.5.1
[42fd0dbc] IterativeSolvers v0.8.4
[093fc24a] LightGraphs v1.3.0
[47aef6b3] SimpleWeightedGraphs v1.1.1
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[3fa0cd96] REPL
[1a1011a3] SharedArrays
[2f01184e] SparseArrays
[8dfed614] Test
Status `/tmp/jl_tTrRhX/Manifest.toml`
[2169fc97] AlgebraicMultigrid v0.3.0
[c9ce4bd3] ArchGDAL v0.5.2
[ec485272] ArnoldiMethod v0.0.4
[fa961155] CEnum v0.4.1
[2b7a1792] Circuitscape v5.7.1
[34da2185] Compat v3.20.0
[aa819f21] CompatHelper v1.16.2
[9a962f9c] DataAPI v1.3.0
[864edb3b] DataStructures v0.18.7
[e2d170a0] DataValueInterfaces v1.0.0
[3c3547ce] DiskArrays v0.2.6
[e2ba6199] ExprTools v0.1.3
[8f5d6c58] EzXML v1.1.0
[add2ef01] GDAL v1.1.5
[a7073274] GDAL_jll v3.0.4+2
[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.19
[d25df0c9] Inflate v0.1.2
[83e8ac13] IniFile v0.5.0
[42fd0dbc] IterativeSolvers v0.8.4
[82899510] IteratorInterfaceExtensions v1.0.0
[692b3bcd] JLLWrappers v1.1.2
[682c06a0] JSON v0.21.1
[aacddb02] JpegTurbo_jll v2.0.1+3
[94ce4f54] Libiconv_jll v1.16.0+7
[89763e89] Libtiff_jll v4.1.0+2
[093fc24a] LightGraphs v1.3.0
[d3a379c0] LittleCMS_jll v2.9.0+0
[1914dd2f] MacroTools v0.5.5
[739be429] MbedTLS v1.0.2
[c8ffd9c3] MbedTLS_jll v2.16.8+0
[78c3b35d] Mocking v0.7.1
[643b3616] OpenJpeg_jll v2.3.1+0
[bac558e1] OrderedCollections v1.3.1
[58948b4f] PROJ_jll v7.0.1+0
[69de0a69] Parsers v1.0.11
[3cdcf5f2] RecipesBase v1.1.0
[76ed43ae] SQLite_jll v3.32.3+0
[699a6c99] SimpleTraits v0.9.3
[47aef6b3] SimpleWeightedGraphs v1.1.1
[90137ffa] StaticArrays v0.12.4
[3783bdb8] TableTraits v1.0.0
[bd369af6] Tables v1.1.0
[f269a46b] TimeZones v1.4.0
[02c8fc9c] XML2_jll v2.9.10+3
[83775a58] Zlib_jll v1.2.11+18
[3161d3a3] Zstd_jll v1.4.5+2
[b53b4c65] libpng_jll v1.6.37+5
[0dad84c5] ArgTools
[56f22d72] Artifacts
[2a0f44e3] Base64
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[f43a241f] Downloads
[b77e0a4c] InteractiveUtils
[b27032c2] LibCURL
[deac9b47] LibCURL_jll
[76f85450] LibGit2
[8f399da3] Libdl
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[d6f4376e] Markdown
[a63ad114] Mmap
[14a3606d] MozillaCACerts_jll
[44cfe95a] Pkg
[de0858da] Printf
[3fa0cd96] REPL
[9a3f8284] Random
[ea8e919c] SHA
[9e88b42a] Serialization
[1a1011a3] SharedArrays
[6462fe0b] Sockets
[2f01184e] SparseArrays
[10745b16] Statistics
[fa267f1f] TOML
[8dfed614] Test
[cf7118a7] UUIDs
[4ec0a83e] Unicode
Testing Running tests...
pwd = /home/pkgeval/.julia/packages/Circuitscape/9x9VD/test
[ Info: 2020-10-18 06:45:34 : Reading maps
[ Info: 2020-10-18 06:45:35 : Resistance/Conductance map has 18 nodes
[ Info: 2020-10-18 06:46:01 : Precision used: Double
[ Info: 2020-10-18 06:46:01 : Starting up Circuitscape to use 2 processes in parallel
[ Info: 2020-10-18 06:46:23 : Reading maps
[ Info: 2020-10-18 06:46:23 : Resistance/Conductance map has 59 nodes
[ Info: 2020-10-18 06:46:25 : There are 54 points and 7 connected components
[ Info: 2020-10-18 06:46:36 : Solving point 2 of 10
[ Info: 2020-10-18 06:46:36 : Solving point 1 of 10
[ Info: 2020-10-18 06:46:49 : Time taken to construct preconditioner = 2.427106755 seconds
[ Info: 2020-10-18 06:46:49 : Time taken to solve linear system = 0.004393411 seconds
[ Info: 2020-10-18 06:46:50 : Time taken to construct preconditioner = 2.339287336 seconds
[ Info: 2020-10-18 06:46:50 : Time taken to solve linear system = 0.004663288 seconds
[ Info: 2020-10-18 06:46:50 : Solving point 3 of 10
[ Info: 2020-10-18 06:46:50 : Solving point 4 of 10
[ Info: 2020-10-18 06:46:50 : Time taken to construct preconditioner = 0.000154958 seconds
[ Info: 2020-10-18 06:46:50 : Time taken to solve linear system = 3.605e-5 seconds
[ Info: 2020-10-18 06:46:50 : Solving point 5 of 10
[ Info: 2020-10-18 06:46:50 : Time taken to construct preconditioner = 6.9669e-5 seconds
[ Info: 2020-10-18 06:46:50 : Time taken to solve linear system = 2.8339e-5 seconds
[ Info: 2020-10-18 06:46:50 : Solving point 6 of 10
[ Info: 2020-10-18 06:46:50 : Solving point 7 of 10
[ Info: 2020-10-18 06:46:50 : Time taken to construct preconditioner = 6.7989e-5 seconds
[ Info: 2020-10-18 06:46:50 : Time taken to solve linear system = 2.751e-5 seconds
[ Info: 2020-10-18 06:46:50 : Solving point 8 of 10
[ Info: 2020-10-18 06:46:50 : Time taken to construct preconditioner = 6.8239e-5 seconds
[ Info: 2020-10-18 06:46:50 : Time taken to solve linear system = 2.729e-5 seconds
[ Info: 2020-10-18 06:46:50 : Solving point 9 of 10
[ Info: 2020-10-18 06:46:50 : Solving point 10 of 10
[ Info: 2020-10-18 06:46:52 : Time taken to complete job = 34.566855816
Test Summary: | Pass Total
Unit tests | 16 16
[ Info: Testing sgNetworkVerify1
[ Info: 2020-10-18 06:46:54 : Precision used: Double
[ Info: 2020-10-18 06:46:54 : Time taken to construct graph laplacian = 2.381e-5
[ Info: 2020-10-18 06:47:00 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:00 : Graph has 67 nodes, 15 focal points and 4 connected components
[ Info: 2020-10-18 06:47:00 : Total number of pair solves = 22
[ Info: 2020-10-18 06:47:02 : Time taken to construct preconditioner = 2.245794419 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to construct local nodemap = 1.356e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 1 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 0.005219242 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 0.046188164 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000371256 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 2 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 4.531e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 5.9719e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000269557 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 3 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.0509e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 5.0729e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000249037 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 4 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.076e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 5.327e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000233938 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 5 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.149e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 4.8029e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000230227 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 6 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.019e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 4.77e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000235527 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 7 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 2.864e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 4.7109e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000315296 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 8 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 2.43e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 5.003e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000226468 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 9 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 2.5459e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 5.0069e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000229217 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 10 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 2.349e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 4.83e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 0.000236438 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to construct preconditioner = 9.4109e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to construct local nodemap = 3.169e-6 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 11 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 1.255e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 0.000102809 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 8.7169e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 12 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 5.3e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.379e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 5.689e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 13 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 4.82e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.205e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 5.387e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 14 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.74e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.137e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 5.3099e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 15 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.43e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.0499e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 5.3759e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 16 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 4.38e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.2449e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 5.1119e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to construct preconditioner = 6.7479e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to construct local nodemap = 6.7e-7 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 17 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 1.106e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 3.7019e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 9.7669e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 18 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 9.96e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.811e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 9.2719e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 19 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 1.103e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.994e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 8.8729e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to construct preconditioner = 2.18e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to construct local nodemap = 6.3e-7 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 20 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 4.96e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.4279e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 5.2169e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 21 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.85e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.8979e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 5.1459e-5 seconds
[ Info: 2020-10-18 06:47:02 : Solving pair 22 of 22
[ Info: 2020-10-18 06:47:02 : Time taken to solve linear system = 3.5e-6 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write voltage maps = 2.181e-5 seconds
[ Info: 2020-10-18 06:47:02 : Time taken to write current maps = 6.1079e-5 seconds
[ Info: 2020-10-18 06:47:03 : Time taken to complete job = 8.654884098
[ Info: Testing sgNetworkVerify1_branch_currents_1_2.txt
[ Info: Test sgNetworkVerify1_branch_currents_1_2.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_1_6.txt
[ Info: Test sgNetworkVerify1_branch_currents_1_6.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_1_7.txt
[ Info: Test sgNetworkVerify1_branch_currents_1_7.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_1_8.txt
[ Info: Test sgNetworkVerify1_branch_currents_1_8.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_2_6.txt
[ Info: Test sgNetworkVerify1_branch_currents_2_6.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_2_7.txt
[ Info: Test sgNetworkVerify1_branch_currents_2_7.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_2_8.txt
[ Info: Test sgNetworkVerify1_branch_currents_2_8.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_44_45.txt
[ Info: Test sgNetworkVerify1_branch_currents_44_45.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_44_48.txt
[ Info: Test sgNetworkVerify1_branch_currents_44_48.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_44_49.txt
[ Info: Test sgNetworkVerify1_branch_currents_44_49.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_45_48.txt
[ Info: Test sgNetworkVerify1_branch_currents_45_48.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_45_49.txt
[ Info: Test sgNetworkVerify1_branch_currents_45_49.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_48_49.txt
[ Info: Test sgNetworkVerify1_branch_currents_48_49.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_51_59.txt
[ Info: Test sgNetworkVerify1_branch_currents_51_59.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_51_61.txt
[ Info: Test sgNetworkVerify1_branch_currents_51_61.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_58_66.txt
[ Info: Test sgNetworkVerify1_branch_currents_58_66.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_58_67.txt
[ Info: Test sgNetworkVerify1_branch_currents_58_67.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_59_61.txt
[ Info: Test sgNetworkVerify1_branch_currents_59_61.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_66_67.txt
[ Info: Test sgNetworkVerify1_branch_currents_66_67.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_6_7.txt
[ Info: Test sgNetworkVerify1_branch_currents_6_7.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_6_8.txt
[ Info: Test sgNetworkVerify1_branch_currents_6_8.txt passed
[ Info: Testing sgNetworkVerify1_branch_currents_7_8.txt
[ Info: Test sgNetworkVerify1_branch_currents_7_8.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_1_2.txt
[ Info: Test sgNetworkVerify1_node_currents_1_2.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_1_6.txt
[ Info: Test sgNetworkVerify1_node_currents_1_6.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_1_7.txt
[ Info: Test sgNetworkVerify1_node_currents_1_7.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_1_8.txt
[ Info: Test sgNetworkVerify1_node_currents_1_8.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_2_6.txt
[ Info: Test sgNetworkVerify1_node_currents_2_6.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_2_7.txt
[ Info: Test sgNetworkVerify1_node_currents_2_7.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_2_8.txt
[ Info: Test sgNetworkVerify1_node_currents_2_8.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_44_45.txt
[ Info: Test sgNetworkVerify1_node_currents_44_45.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_44_48.txt
[ Info: Test sgNetworkVerify1_node_currents_44_48.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_44_49.txt
[ Info: Test sgNetworkVerify1_node_currents_44_49.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_45_48.txt
[ Info: Test sgNetworkVerify1_node_currents_45_48.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_45_49.txt
[ Info: Test sgNetworkVerify1_node_currents_45_49.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_48_49.txt
[ Info: Test sgNetworkVerify1_node_currents_48_49.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_51_59.txt
[ Info: Test sgNetworkVerify1_node_currents_51_59.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_51_61.txt
[ Info: Test sgNetworkVerify1_node_currents_51_61.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_58_66.txt
[ Info: Test sgNetworkVerify1_node_currents_58_66.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_58_67.txt
[ Info: Test sgNetworkVerify1_node_currents_58_67.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_59_61.txt
[ Info: Test sgNetworkVerify1_node_currents_59_61.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_66_67.txt
[ Info: Test sgNetworkVerify1_node_currents_66_67.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_6_7.txt
[ Info: Test sgNetworkVerify1_node_currents_6_7.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_6_8.txt
[ Info: Test sgNetworkVerify1_node_currents_6_8.txt passed
[ Info: Testing sgNetworkVerify1_node_currents_7_8.txt
[ Info: Test sgNetworkVerify1_node_currents_7_8.txt passed
[ Info: Testing sgNetworkVerify1_voltages_1_2.txt
[ Info: Test sgNetworkVerify1_voltages_1_2.txt passed
[ Info: Testing sgNetworkVerify1_voltages_1_6.txt
[ Info: Test sgNetworkVerify1_voltages_1_6.txt passed
[ Info: Testing sgNetworkVerify1_voltages_1_7.txt
[ Info: Test sgNetworkVerify1_voltages_1_7.txt passed
[ Info: Testing sgNetworkVerify1_voltages_1_8.txt
[ Info: Test sgNetworkVerify1_voltages_1_8.txt passed
[ Info: Testing sgNetworkVerify1_voltages_2_6.txt
[ Info: Test sgNetworkVerify1_voltages_2_6.txt passed
[ Info: Testing sgNetworkVerify1_voltages_2_7.txt
[ Info: Test sgNetworkVerify1_voltages_2_7.txt passed
[ Info: Testing sgNetworkVerify1_voltages_2_8.txt
[ Info: Test sgNetworkVerify1_voltages_2_8.txt passed
[ Info: Testing sgNetworkVerify1_voltages_44_45.txt
[ Info: Test sgNetworkVerify1_voltages_44_45.txt passed
[ Info: Testing sgNetworkVerify1_voltages_44_48.txt
[ Info: Test sgNetworkVerify1_voltages_44_48.txt passed
[ Info: Testing sgNetworkVerify1_voltages_44_49.txt
[ Info: Test sgNetworkVerify1_voltages_44_49.txt passed
[ Info: Testing sgNetworkVerify1_voltages_45_48.txt
[ Info: Test sgNetworkVerify1_voltages_45_48.txt passed
[ Info: Testing sgNetworkVerify1_voltages_45_49.txt
[ Info: Test sgNetworkVerify1_voltages_45_49.txt passed
[ Info: Testing sgNetworkVerify1_voltages_48_49.txt
[ Info: Test sgNetworkVerify1_voltages_48_49.txt passed
[ Info: Testing sgNetworkVerify1_voltages_51_59.txt
[ Info: Test sgNetworkVerify1_voltages_51_59.txt passed
[ Info: Testing sgNetworkVerify1_voltages_51_61.txt
[ Info: Test sgNetworkVerify1_voltages_51_61.txt passed
[ Info: Testing sgNetworkVerify1_voltages_58_66.txt
[ Info: Test sgNetworkVerify1_voltages_58_66.txt passed
[ Info: Testing sgNetworkVerify1_voltages_58_67.txt
[ Info: Test sgNetworkVerify1_voltages_58_67.txt passed
[ Info: Testing sgNetworkVerify1_voltages_59_61.txt
[ Info: Test sgNetworkVerify1_voltages_59_61.txt passed
[ Info: Testing sgNetworkVerify1_voltages_66_67.txt
[ Info: Test sgNetworkVerify1_voltages_66_67.txt passed
[ Info: Testing sgNetworkVerify1_voltages_6_7.txt
[ Info: Test sgNetworkVerify1_voltages_6_7.txt passed
[ Info: Testing sgNetworkVerify1_voltages_6_8.txt
[ Info: Test sgNetworkVerify1_voltages_6_8.txt passed
[ Info: Testing sgNetworkVerify1_voltages_7_8.txt
[ Info: Test sgNetworkVerify1_voltages_7_8.txt passed
[ Info: Test sgNetworkVerify1 passed
[ Info: Testing sgNetworkVerify2
[ Info: 2020-10-18 06:47:04 : Precision used: Double
[ Info: 2020-10-18 06:47:04 : Time taken to construct graph laplacian = 9.14e-6
[ Info: 2020-10-18 06:47:04 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:04 : Graph has 7 nodes, 5 focal points and 1 connected components
[ Info: 2020-10-18 06:47:04 : Total number of pair solves = 10
[ Info: 2020-10-18 06:47:04 : Time taken to construct preconditioner = 9.2659e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to construct local nodemap = 3.2e-6 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 1 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 1.381e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 3.4419e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 2 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.16e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.212e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 3 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 2.94e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.27e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 4 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.0e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.3329e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 5 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 2.81e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.308e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 6 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 2.78e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.176e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 7 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 2.78e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 1.9929e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 8 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 2.87e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.348e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 9 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 2.71e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.308e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 10 of 10
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 2.75e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.1949e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to complete job = 0.002549221
[ Info: Testing sgNetworkVerify2_voltages_1_2.txt
[ Info: Test sgNetworkVerify2_voltages_1_2.txt passed
[ Info: Testing sgNetworkVerify2_voltages_1_3.txt
[ Info: Test sgNetworkVerify2_voltages_1_3.txt passed
[ Info: Testing sgNetworkVerify2_voltages_1_4.txt
[ Info: Test sgNetworkVerify2_voltages_1_4.txt passed
[ Info: Testing sgNetworkVerify2_voltages_1_5.txt
[ Info: Test sgNetworkVerify2_voltages_1_5.txt passed
[ Info: Testing sgNetworkVerify2_voltages_2_3.txt
[ Info: Test sgNetworkVerify2_voltages_2_3.txt passed
[ Info: Testing sgNetworkVerify2_voltages_2_4.txt
[ Info: Test sgNetworkVerify2_voltages_2_4.txt passed
[ Info: Testing sgNetworkVerify2_voltages_2_5.txt
[ Info: Test sgNetworkVerify2_voltages_2_5.txt passed
[ Info: Testing sgNetworkVerify2_voltages_3_4.txt
[ Info: Test sgNetworkVerify2_voltages_3_4.txt passed
[ Info: Testing sgNetworkVerify2_voltages_3_5.txt
[ Info: Test sgNetworkVerify2_voltages_3_5.txt passed
[ Info: Testing sgNetworkVerify2_voltages_4_5.txt
[ Info: Test sgNetworkVerify2_voltages_4_5.txt passed
[ Info: Test sgNetworkVerify2 passed
[ Info: Testing sgNetworkVerify3
[ Info: 2020-10-18 06:47:04 : Precision used: Double
[ Info: 2020-10-18 06:47:04 : Time taken to construct graph laplacian = 8.32e-6
[ Info: 2020-10-18 06:47:04 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:04 : Graph has 14 nodes, 7 focal points and 3 connected components
[ Info: 2020-10-18 06:47:04 : Total number of pair solves = 11
[ Info: 2020-10-18 06:47:04 : Time taken to construct preconditioner = 9.6609e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to construct local nodemap = 2.28e-6 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 1 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 1.159e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 5.7279e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 2 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.76e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.821e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 3 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.95e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.627e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 4 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.379e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.896e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 5 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.64e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.7009e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 6 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.68e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.7419e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 7 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 4.17e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.7449e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 8 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 4.08e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.718e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 9 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.48e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.564e-5 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 10 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 3.57e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.707e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to construct preconditioner = 4.6969e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to construct local nodemap = 7.4e-7 seconds
[ Info: 2020-10-18 06:47:04 : Solving pair 11 of 11
[ Info: 2020-10-18 06:47:04 : Time taken to solve linear system = 5.71e-6 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to write voltage maps = 2.7719e-5 seconds
[ Info: 2020-10-18 06:47:04 : Time taken to complete job = 0.040095902
[ Info: Testing sgNetworkVerify3_voltages_1_12.txt
[ Info: Test sgNetworkVerify3_voltages_1_12.txt passed
[ Info: Testing sgNetworkVerify3_voltages_1_2.txt
[ Info: Test sgNetworkVerify3_voltages_1_2.txt passed
[ Info: Testing sgNetworkVerify3_voltages_1_6.txt
[ Info: Test sgNetworkVerify3_voltages_1_6.txt passed
[ Info: Testing sgNetworkVerify3_voltages_1_9.txt
[ Info: Test sgNetworkVerify3_voltages_1_9.txt passed
[ Info: Testing sgNetworkVerify3_voltages_2_12.txt
[ Info: Test sgNetworkVerify3_voltages_2_12.txt passed
[ Info: Testing sgNetworkVerify3_voltages_2_6.txt
[ Info: Test sgNetworkVerify3_voltages_2_6.txt passed
[ Info: Testing sgNetworkVerify3_voltages_2_9.txt
[ Info: Test sgNetworkVerify3_voltages_2_9.txt passed
[ Info: Testing sgNetworkVerify3_voltages_6_12.txt
[ Info: Test sgNetworkVerify3_voltages_6_12.txt passed
[ Info: Testing sgNetworkVerify3_voltages_6_9.txt
[ Info: Test sgNetworkVerify3_voltages_6_9.txt passed
[ Info: Testing sgNetworkVerify3_voltages_7_14.txt
[ Info: Test sgNetworkVerify3_voltages_7_14.txt passed
[ Info: Testing sgNetworkVerify3_voltages_9_12.txt
[ Info: Test sgNetworkVerify3_voltages_9_12.txt passed
[ Info: Test sgNetworkVerify3 passed
[ Info: Testing mgNetworkVerify1
[ Info: 2020-10-18 06:47:04 : Precision used: Double
[ Info: 2020-10-18 06:47:05 : Time taken to construct graph laplacian = 1.921e-5
[ Info: 2020-10-18 06:47:05 : Time taken to construct preconditioner = 0.000110178 seconds
[ Info: 2020-10-18 06:47:05 : Time taken to solve linear system = 2.631e-5 seconds
[ Info: 2020-10-18 06:47:05 : Time taken to complete job = 0.959609339
[ Info: Testing mgNetworkVerify1_branch_currents.txt
[ Info: Test mgNetworkVerify1_branch_currents.txt passed
[ Info: Testing mgNetworkVerify1_node_currents.txt
[ Info: Test mgNetworkVerify1_node_currents.txt passed
[ Info: Testing mgNetworkVerify1_voltages.txt
[ Info: Test mgNetworkVerify1_voltages.txt passed
[ Info: Test mgNetworkVerify1 passed
[ Info: Testing mgNetworkVerify2
[ Info: 2020-10-18 06:47:05 : Precision used: Double
[ Info: 2020-10-18 06:47:05 : Time taken to construct graph laplacian = 9.36e-6
[ Info: 2020-10-18 06:47:05 : Time taken to construct preconditioner = 3.095e-5 seconds
[ Info: 2020-10-18 06:47:05 : Time taken to solve linear system = 4.32e-6 seconds
[ Info: 2020-10-18 06:47:05 : Time taken to complete job = 0.000548004
[ Info: Testing mgNetworkVerify2_branch_currents.txt
[ Info: Test mgNetworkVerify2_branch_currents.txt passed
[ Info: Testing mgNetworkVerify2_node_currents.txt
[ Info: Test mgNetworkVerify2_node_currents.txt passed
[ Info: Testing mgNetworkVerify2_voltages.txt
[ Info: Test mgNetworkVerify2_voltages.txt passed
[ Info: Test mgNetworkVerify2 passed
[ Info: Testing mgNetworkVerify3
[ Info: 2020-10-18 06:47:05 : Precision used: Double
[ Info: 2020-10-18 06:47:05 : Time taken to construct graph laplacian = 3.13e-6
[ Info: 2020-10-18 06:47:05 : Time taken to construct preconditioner = 1.9829e-5 seconds
[ Info: 2020-10-18 06:47:05 : Time taken to solve linear system = 4.87e-6 seconds
[ Info: 2020-10-18 06:47:05 : Time taken to complete job = 0.000424175
[ Info: Testing mgNetworkVerify3_branch_currents.txt
[ Info: Test mgNetworkVerify3_branch_currents.txt passed
[ Info: Testing mgNetworkVerify3_node_currents.txt
[ Info: Test mgNetworkVerify3_node_currents.txt passed
[ Info: Testing mgNetworkVerify3_voltages.txt
[ Info: Test mgNetworkVerify3_voltages.txt passed
[ Info: Test mgNetworkVerify3 passed
[ Info: Testing sgVerify1
[ Info: 2020-10-18 06:47:05 : Precision used: Double
[ Info: 2020-10-18 06:47:05 : Starting up Circuitscape to use 2 processes in parallel
[ Info: 2020-10-18 06:47:18 : Reading maps
[ Info: 2020-10-18 06:47:18 : Resistance/Conductance map has 59 nodes
[ Info: 2020-10-18 06:47:20 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:20 : Graph has 54 nodes, 10 focal points and 7 connected components
[ Info: 2020-10-18 06:47:20 : Total number of pair solves = 10
[ Info: 2020-10-18 06:47:20 : Time taken to construct preconditioner = 0.000191968 seconds
[ Info: 2020-10-18 06:47:20 : Time taken to construct local nodemap = 4.725e-5 seconds
[ Info: 2020-10-18 06:47:27 : Scheduling pair 1 of 10 to be solved
[ Info: 2020-10-18 06:47:29 : Scheduling pair 2 of 10 to be solved
[ Info: 2020-10-18 06:47:29 : Scheduling pair 3 of 10 to be solved
[ Info: 2020-10-18 06:47:29 : Scheduling pair 4 of 10 to be solved
[ Info: 2020-10-18 06:47:29 : Solving pair 1 of 10
[ Info: 2020-10-18 06:47:29 : Time taken to solve linear system = 0.083435176 seconds
[ Info: 2020-10-18 06:47:30 : Time taken to write voltage maps = 0.660402998 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.61740015 seconds
[ Info: 2020-10-18 06:47:31 : Solving pair 2 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 6.0299e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000380596 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000416865 seconds
[ Info: 2020-10-18 06:47:31 : Solving pair 2 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 4.4029e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000352926 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000494074 seconds
[ Info: 2020-10-18 06:47:31 : Solving pair 3 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 5.0429e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000399676 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000424925 seconds
[ Info: 2020-10-18 06:47:31 : Solving pair 4 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 4.754e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000377836 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000445415 seconds
[ Info: 2020-10-18 06:47:31 : Scheduling pair 8 of 10 to be solved
[ Info: 2020-10-18 06:47:31 : Scheduling pair 9 of 10 to be solved
[ Info: 2020-10-18 06:47:31 : Solving pair 8 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 7.1989e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.001099188 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000587223 seconds
[ Info: 2020-10-18 06:47:31 : Solving pair 8 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 5.7159e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000469984 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000527814 seconds
[ Info: 2020-10-18 06:47:31 : Solving pair 9 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 4.95e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000463015 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000509765 seconds
[ Info: 2020-10-18 06:47:31 : Solving pair 9 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 4.9319e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000449704 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000504434 seconds
[ Info: 2020-10-18 06:47:31 : Scheduling pair 10 of 10 to be solved
[ Info: 2020-10-18 06:47:31 : Solving pair 10 of 10
[ Info: 2020-10-18 06:47:31 : Time taken to solve linear system = 5.9899e-5 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write voltage maps = 0.000574194 seconds
[ Info: 2020-10-18 06:47:31 : Time taken to write current maps = 0.000524324 seconds
[ Info: 2020-10-18 06:47:30 : Scheduling pair 5 of 10 to be solved
[ Info: 2020-10-18 06:47:32 : Scheduling pair 6 of 10 to be solved
[ Info: 2020-10-18 06:47:32 : Scheduling pair 7 of 10 to be solved
[ Info: 2020-10-18 06:47:32 : Solving pair 5 of 10
[ Info: 2020-10-18 06:47:32 : Time taken to solve linear system = 0.004369691 seconds
[ Info: 2020-10-18 06:47:32 : Time taken to write voltage maps = 0.2144167 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to write current maps = 0.515625648 seconds
[ Info: 2020-10-18 06:47:33 : Solving pair 5 of 10
[ Info: 2020-10-18 06:47:33 : Time taken to solve linear system = 5.146e-5 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to write voltage maps = 0.000300867 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to write current maps = 0.000369886 seconds
[ Info: 2020-10-18 06:47:33 : Solving pair 6 of 10
[ Info: 2020-10-18 06:47:33 : Time taken to solve linear system = 3.0639e-5 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to write voltage maps = 0.000292536 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to write current maps = 0.000357816 seconds
[ Info: 2020-10-18 06:47:33 : Solving pair 7 of 10
[ Info: 2020-10-18 06:47:33 : Time taken to solve linear system = 4.015e-5 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to write voltage maps = 0.000379126 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to write current maps = 0.000418385 seconds
[ Info: 2020-10-18 06:47:33 : Time taken to complete job = 14.332752658
[ Info: Testing sgVerify1_cum_curmap.asc
[ Info: Test sgVerify1_cum_curmap.asc passed
[ Info: Testing sgVerify1_curmap_1_2.asc
[ Info: Test sgVerify1_curmap_1_2.asc passed
[ Info: Testing sgVerify1_curmap_1_4.asc
[ Info: Test sgVerify1_curmap_1_4.asc passed
[ Info: Testing sgVerify1_curmap_1_5.asc
[ Info: Test sgVerify1_curmap_1_5.asc passed
[ Info: Testing sgVerify1_curmap_1_8.asc
[ Info: Test sgVerify1_curmap_1_8.asc passed
[ Info: Testing sgVerify1_curmap_1_9.asc
[ Info: Test sgVerify1_curmap_1_9.asc passed
[ Info: Testing sgVerify1_curmap_2_4.asc
[ Info: Test sgVerify1_curmap_2_4.asc passed
[ Info: Testing sgVerify1_curmap_2_5.asc
[ Info: Test sgVerify1_curmap_2_5.asc passed
[ Info: Testing sgVerify1_curmap_2_8.asc
[ Info: Test sgVerify1_curmap_2_8.asc passed
[ Info: Testing sgVerify1_curmap_2_9.asc
[ Info: Test sgVerify1_curmap_2_9.asc passed
[ Info: Testing sgVerify1_curmap_4_8.asc
[ Info: Test sgVerify1_curmap_4_8.asc passed
[ Info: Testing sgVerify1_curmap_4_9.asc
[ Info: Test sgVerify1_curmap_4_9.asc passed
[ Info: Testing sgVerify1_curmap_5_8.asc
[ Info: Test sgVerify1_curmap_5_8.asc passed
[ Info: Testing sgVerify1_curmap_5_9.asc
[ Info: Test sgVerify1_curmap_5_9.asc passed
[ Info: Testing sgVerify1_curmap_8_9.asc
[ Info: Test sgVerify1_curmap_8_9.asc passed
[ Info: Testing sgVerify1_max_curmap.asc
[ Info: Test sgVerify1_max_curmap.asc passed
[ Info: Testing sgVerify1_voltmap_1_2.asc
[ Info: Test sgVerify1_voltmap_1_2.asc passed
[ Info: Testing sgVerify1_voltmap_1_4.asc
[ Info: Test sgVerify1_voltmap_1_4.asc passed
[ Info: Testing sgVerify1_voltmap_1_5.asc
[ Info: Test sgVerify1_voltmap_1_5.asc passed
[ Info: Testing sgVerify1_voltmap_1_8.asc
[ Info: Test sgVerify1_voltmap_1_8.asc passed
[ Info: Testing sgVerify1_voltmap_1_9.asc
[ Info: Test sgVerify1_voltmap_1_9.asc passed
[ Info: Testing sgVerify1_voltmap_2_4.asc
[ Info: Test sgVerify1_voltmap_2_4.asc passed
[ Info: Testing sgVerify1_voltmap_2_5.asc
[ Info: Test sgVerify1_voltmap_2_5.asc passed
[ Info: Testing sgVerify1_voltmap_2_8.asc
[ Info: Test sgVerify1_voltmap_2_8.asc passed
[ Info: Testing sgVerify1_voltmap_2_9.asc
[ Info: Test sgVerify1_voltmap_2_9.asc passed
[ Info: Testing sgVerify1_voltmap_4_8.asc
[ Info: Test sgVerify1_voltmap_4_8.asc passed
[ Info: Testing sgVerify1_voltmap_4_9.asc
[ Info: Test sgVerify1_voltmap_4_9.asc passed
[ Info: Testing sgVerify1_voltmap_5_8.asc
[ Info: Test sgVerify1_voltmap_5_8.asc passed
[ Info: Testing sgVerify1_voltmap_5_9.asc
[ Info: Test sgVerify1_voltmap_5_9.asc passed
[ Info: Testing sgVerify1_voltmap_8_9.asc
[ Info: Test sgVerify1_voltmap_8_9.asc passed
[ Info: Test sgVerify1 passed
[ Info: Testing sgVerify2
[ Info: 2020-10-18 06:47:33 : Precision used: Double
[ Info: 2020-10-18 06:47:33 : Reading maps
[ Info: 2020-10-18 06:47:33 : Resistance/Conductance map has 7 nodes
[ Info: 2020-10-18 06:47:34 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:34 : Graph has 6 nodes, 5 focal points and 1 connected components
[ Info: 2020-10-18 06:47:34 : Total number of pair solves = 6
[ Info: 2020-10-18 06:47:34 : Time taken to construct preconditioner = 0.000103609 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct local nodemap = 5.37e-6 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 1 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 1.8339e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000684102 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.099762353 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 1 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 1.575e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000286416 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000285316 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 2 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 4.99e-6 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000260457 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000270987 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 2 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 3.93e-6 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000257657 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000270647 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 3 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 3.85e-6 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000258617 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000270717 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 3 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 5.04e-6 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000261867 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000264367 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 4 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 3.97e-6 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000259057 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000259937 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 5 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 4.03e-6 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000253108 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000268057 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 6 of 6
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 3.94e-6 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000256867 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000264837 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to complete job = 0.314647778
[ Info: Testing sgVerify2_cum_curmap.asc
[ Info: Test sgVerify2_cum_curmap.asc passed
[ Info: Testing sgVerify2_curmap_1_3.asc
[ Info: Test sgVerify2_curmap_1_3.asc passed
[ Info: Testing sgVerify2_curmap_1_4.asc
[ Info: Test sgVerify2_curmap_1_4.asc passed
[ Info: Testing sgVerify2_curmap_1_5.asc
[ Info: Test sgVerify2_curmap_1_5.asc passed
[ Info: Testing sgVerify2_curmap_2_3.asc
[ Info: Test sgVerify2_curmap_2_3.asc passed
[ Info: Testing sgVerify2_curmap_2_4.asc
[ Info: Test sgVerify2_curmap_2_4.asc passed
[ Info: Testing sgVerify2_curmap_2_5.asc
[ Info: Test sgVerify2_curmap_2_5.asc passed
[ Info: Testing sgVerify2_curmap_3_4.asc
[ Info: Test sgVerify2_curmap_3_4.asc passed
[ Info: Testing sgVerify2_curmap_3_5.asc
[ Info: Test sgVerify2_curmap_3_5.asc passed
[ Info: Testing sgVerify2_curmap_4_5.asc
[ Info: Test sgVerify2_curmap_4_5.asc passed
[ Info: Testing sgVerify2_voltmap_1_3.asc
[ Info: Test sgVerify2_voltmap_1_3.asc passed
[ Info: Testing sgVerify2_voltmap_1_4.asc
[ Info: Test sgVerify2_voltmap_1_4.asc passed
[ Info: Testing sgVerify2_voltmap_1_5.asc
[ Info: Test sgVerify2_voltmap_1_5.asc passed
[ Info: Testing sgVerify2_voltmap_2_3.asc
[ Info: Test sgVerify2_voltmap_2_3.asc passed
[ Info: Testing sgVerify2_voltmap_2_4.asc
[ Info: Test sgVerify2_voltmap_2_4.asc passed
[ Info: Testing sgVerify2_voltmap_2_5.asc
[ Info: Test sgVerify2_voltmap_2_5.asc passed
[ Info: Testing sgVerify2_voltmap_3_4.asc
[ Info: Test sgVerify2_voltmap_3_4.asc passed
[ Info: Testing sgVerify2_voltmap_3_5.asc
[ Info: Test sgVerify2_voltmap_3_5.asc passed
[ Info: Testing sgVerify2_voltmap_4_5.asc
[ Info: Test sgVerify2_voltmap_4_5.asc passed
[ Info: Test sgVerify2 passed
[ Info: Testing sgVerify3
[ Info: 2020-10-18 06:47:34 : Precision used: Double
[ Info: 2020-10-18 06:47:34 : Reading maps
[ Info: 2020-10-18 06:47:34 : Resistance/Conductance map has 75 nodes
[ Info: 2020-10-18 06:47:34 : Total number of pair solves = 3
[ Info: 2020-10-18 06:47:34 : Solving pair 1 of 3
[ Info: 2020-10-18 06:47:34 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:34 : Graph has 69 nodes, 2 focal points and 3 connected components
[ Info: 2020-10-18 06:47:34 : Time taken to construct preconditioner = 0.000134589 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct local nodemap = 3.69e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to solve linear system = 1.9049e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write voltage maps = 0.000969729 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to write current maps = 0.000591633 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 2 of 3
[ Info: 2020-10-18 06:47:34 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:34 : Graph has 69 nodes, 2 focal points and 3 connected components
[ Info: 2020-10-18 06:47:34 : Time taken to construct preconditioner = 8.4919e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct local nodemap = 1.835e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct preconditioner = 0.000138309 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct local nodemap = 3.1369e-5 seconds
[ Info: 2020-10-18 06:47:34 : Solving pair 3 of 3
[ Info: 2020-10-18 06:47:34 : Solver used: AMG accelerated by CG
[ Info: 2020-10-18 06:47:34 : Graph has 70 nodes, 2 focal points and 4 connected components
[ Info: 2020-10-18 06:47:34 : Time taken to construct preconditioner = 5.9389e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct local nodemap = 1.551e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct preconditioner = 0.000108359 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to construct local nodemap = 2.814e-5 seconds
[ Info: 2020-10-18 06:47:34 : Time taken to complete job = 0.16612646
[ Info: Testing sgVerify3_cum_curmap.asc
[ Info: Test sgVerify3_cum_curmap.asc passed
[ Info: Testing sgVerify3_curmap_1_2.asc
[ Info: Test sgVerify3_curmap_1_2.asc passed
[ Info: Testing sgVerify3_voltmap_1_2.asc
[ Info: Test sgVerify3_voltmap_1_2.asc passed
[ Info: Test sgVerify3 passed
[ Info: Testing sgVerify4