-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path1.5.0-DEV-dfcba8768f.log
11390 lines (11389 loc) · 700 KB
/
1.5.0-DEV-dfcba8768f.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.5.0-DEV.13
Commit dfcba8768f (2020-01-06 06:02 UTC)
Platform Info:
OS: Linux (x86_64-linux-gnu)
CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
WORD_SIZE: 64
LIBM: libopenlibm
LLVM: libLLVM-8.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
Resolving package versions...
Installed SimpleTraits ───────── v0.9.1
Installed RecipesBase ────────── v0.7.0
Installed GZip ───────────────── v0.5.1
Installed ArnoldiMethod ──────── v0.0.4
Installed MacroTools ─────────── v0.5.3
Installed IterativeSolvers ───── v0.8.1
Installed AlgebraicMultigrid ─── v0.2.2
Installed Compat ─────────────── v2.2.0
Installed SimpleWeightedGraphs ─ v1.1.0
Installed OrderedCollections ─── v1.1.0
Installed StaticArrays ───────── v0.12.1
Installed DataStructures ─────── v0.17.7
Installed LightGraphs ────────── v1.3.0
Installed Circuitscape ───────── v5.5.5
Installed Inflate ────────────── v0.1.1
Updating `~/.julia/environments/v1.5/Project.toml`
[2b7a1792] + Circuitscape v5.5.5
Updating `~/.julia/environments/v1.5/Manifest.toml`
[2169fc97] + AlgebraicMultigrid v0.2.2
[ec485272] + ArnoldiMethod v0.0.4
[2b7a1792] + Circuitscape v5.5.5
[34da2185] + Compat v2.2.0
[864edb3b] + DataStructures v0.17.7
[92fee26a] + GZip v0.5.1
[d25df0c9] + Inflate v0.1.1
[42fd0dbc] + IterativeSolvers v0.8.1
[093fc24a] + LightGraphs v1.3.0
[1914dd2f] + MacroTools v0.5.3
[bac558e1] + OrderedCollections v1.1.0
[3cdcf5f2] + RecipesBase v0.7.0
[699a6c99] + SimpleTraits v0.9.1
[47aef6b3] + SimpleWeightedGraphs v1.1.0
[90137ffa] + StaticArrays v0.12.1
[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
Testing Circuitscape
Updating `/tmp/jl_ymN37I/Project.toml`
[no changes]
Updating `/tmp/jl_ymN37I/Manifest.toml`
[no changes]
Running sandbox
Status `/tmp/jl_ymN37I/Project.toml`
[2169fc97] AlgebraicMultigrid v0.2.2
[2b7a1792] Circuitscape v5.5.5
[92fee26a] GZip v0.5.1
[42fd0dbc] IterativeSolvers v0.8.1
[093fc24a] LightGraphs v1.3.0
[47aef6b3] SimpleWeightedGraphs v1.1.0
[ade2ca70] Dates
[8bb1440f] DelimitedFiles
[8ba89e20] Distributed
[37e2e46d] LinearAlgebra
[56ddb016] Logging
[3fa0cd96] REPL
[1a1011a3] SharedArrays
[2f01184e] SparseArrays
[8dfed614] Test
pwd = /home/pkgeval/.julia/packages/Circuitscape/3Rn8u/test
[ Info: 2020-01-09 04:30:06 : Reading maps
[ Info: 2020-01-09 04:30:09 : Resistance/Conductance map has 18 nodes
[ Info: 2020-01-09 04:31:03 : Precision used: Double
[ Info: 2020-01-09 04:31:03 : Starting up Circuitscape to use 2 processes in parallel
[ Info: 2020-01-09 04:31:27 : Reading maps
[ Info: 2020-01-09 04:31:27 : Resistance/Conductance map has 59 nodes
[ Info: 2020-01-09 04:31:34 : There are 54 points and 7 connected components
[ Info: 2020-01-09 04:32:07 : Solving point 1 of 10
[ Info: 2020-01-09 04:32:13 : Solving point 2 of 10
[ Info: 2020-01-09 04:32:32 : Time taken to construct preconditioner = 3.87443639 seconds
[ Info: 2020-01-09 04:32:33 : Time taken to solve linear system = 1.292450537 seconds
[ Info: 2020-01-09 04:32:34 : Solving point 3 of 10
[ Info: 2020-01-09 04:32:34 : Solving point 4 of 10
[ Info: 2020-01-09 04:32:34 : Time taken to construct preconditioner = 0.230081287 seconds
[ Info: 2020-01-09 04:32:34 : Time taken to solve linear system = 0.000122809 seconds
[ Info: 2020-01-09 04:32:34 : Solving point 5 of 10
[ Info: 2020-01-09 04:32:34 : Time taken to construct preconditioner = 0.00022419 seconds
[ Info: 2020-01-09 04:32:34 : Time taken to solve linear system = 0.000124976 seconds
[ Info: 2020-01-09 04:32:34 : Solving point 6 of 10
[ Info: 2020-01-09 04:32:34 : Solving point 7 of 10
[ Info: 2020-01-09 04:32:35 : Time taken to construct preconditioner = 0.091983339 seconds
[ Info: 2020-01-09 04:32:35 : Time taken to solve linear system = 0.000137345 seconds
[ Info: 2020-01-09 04:32:35 : Solving point 8 of 10
[ Info: 2020-01-09 04:32:35 : Time taken to construct preconditioner = 0.000251324 seconds
[ Info: 2020-01-09 04:32:35 : Time taken to solve linear system = 0.000124391 seconds
[ Info: 2020-01-09 04:32:35 : Solving point 9 of 10
[ Info: 2020-01-09 04:32:35 : Solving point 10 of 10
[ Info: 2020-01-09 04:32:40 : Time taken to construct preconditioner = 2.96236895 seconds
[ Info: 2020-01-09 04:32:41 : Time taken to solve linear system = 0.964283582 seconds
[ Info: 2020-01-09 04:32:43 : Time taken to complete job = 88.706306458
Test Summary: | Pass Total
Unit tests | 16 16
[ Info: Testing sgNetworkVerify1
[ Info: 2020-01-09 04:32:48 : Precision used: Double
[ Info: 2020-01-09 04:32:49 : Time taken to construct graph laplacian = 2.8433e-5
[ Info: 2020-01-09 04:32:57 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:32:57 : Graph has 67 nodes, 15 focal points and 4 connected components
[ Info: 2020-01-09 04:32:57 : Total number of pair solves = 22
[ Info: 2020-01-09 04:32:59 : Time taken to construct preconditioner = 2.738615432 seconds
[ Info: 2020-01-09 04:32:59 : Time taken to construct local nodemap = 1.9668e-5 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 1 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.012178818 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 5 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.023026844 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000142724 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.165790285 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.000254863 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 2 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000819217 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000172782 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 6 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.001176717 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000110146 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000876083 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.000206414 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 3 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000938697 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000128469 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 7 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.000224114 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000153751 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000719614 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.00023003 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 4 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000854045 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000169392 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.000307898 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.001003678 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 8 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000176373 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.00025136 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 10 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000870619 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.00020012 seconds
[ Info: 2020-01-09 04:33:00 : Solving pair 9 of 22
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.00024875 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to solve linear system = 0.000152884 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000850449 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write voltage maps = 0.000248647 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to write current maps = 0.000956161 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to construct preconditioner = 0.000117246 seconds
[ Info: 2020-01-09 04:33:00 : Time taken to construct local nodemap = 4.144e-6 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 11 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 6.2124e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000221752 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000299204 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 12 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 4.5042e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000743212 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000266611 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 13 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 2.3375e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000172918 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000287348 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 14 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 3.296e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000106823 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000281844 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 15 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 1.5741e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000111346 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000261594 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 16 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 5.039e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000178493 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000207472 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to construct preconditioner = 0.133390535 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to construct local nodemap = 5.147e-6 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 17 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 4.4044e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000217208 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000341611 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 18 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 3.9419e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000139978 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000318003 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 19 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 3.2813e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000126716 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.00036951 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to construct preconditioner = 0.000100179 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to construct local nodemap = 3.352e-6 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 20 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 2.8835e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000178324 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000221548 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 21 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 1.9392e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000103492 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000207489 seconds
[ Info: 2020-01-09 04:33:01 : Solving pair 22 of 22
[ Info: 2020-01-09 04:33:01 : Time taken to solve linear system = 1.644e-5 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write voltage maps = 0.000111678 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to write current maps = 0.000228352 seconds
[ Info: 2020-01-09 04:33:01 : Time taken to complete job = 13.158366888
[ 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-01-09 04:33:04 : Precision used: Double
[ Info: 2020-01-09 04:33:04 : Time taken to construct graph laplacian = 1.2939e-5
[ Info: 2020-01-09 04:33:04 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:04 : Graph has 7 nodes, 5 focal points and 1 connected components
[ Info: 2020-01-09 04:33:04 : Total number of pair solves = 10
[ Info: 2020-01-09 04:33:04 : Time taken to construct preconditioner = 0.000173229 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to construct local nodemap = 4.473e-6 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 1 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.8704e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000159125 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 2 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 4.1738e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000129474 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 3 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 2.5874e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000139299 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 4 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 2.4097e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000134205 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 5 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 2.394e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.00012886 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 6 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.0214e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000136147 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 7 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.2161e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000134573 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 8 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 2.4174e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000131208 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 9 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 2.342e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000129283 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 10 of 10
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 2.4792e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000347295 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to complete job = 0.012861207
[ 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-01-09 04:33:04 : Precision used: Double
[ Info: 2020-01-09 04:33:04 : Time taken to construct graph laplacian = 1.0206e-5
[ Info: 2020-01-09 04:33:04 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:04 : Graph has 14 nodes, 7 focal points and 3 connected components
[ Info: 2020-01-09 04:33:04 : Total number of pair solves = 11
[ Info: 2020-01-09 04:33:04 : Time taken to construct preconditioner = 0.000115715 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to construct local nodemap = 4.54e-6 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 1 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 3.8022e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000192549 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 2 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 4.8388e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000171613 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 3 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.6768e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000148994 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 4 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 2.8753e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000156543 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 5 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.5203e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000151735 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 6 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 6.4946e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000171352 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 7 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.5032e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.00015107 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 8 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.5276e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000153609 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 9 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.5893e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000146483 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 10 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.5815e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000146124 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to construct preconditioner = 0.000159581 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to construct local nodemap = 4.476e-6 seconds
[ Info: 2020-01-09 04:33:04 : Solving pair 11 of 11
[ Info: 2020-01-09 04:33:04 : Time taken to solve linear system = 1.5684e-5 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to write voltage maps = 0.000183191 seconds
[ Info: 2020-01-09 04:33:04 : Time taken to complete job = 0.066125626
[ 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-01-09 04:33:04 : Precision used: Double
[ Info: 2020-01-09 04:33:04 : Time taken to construct graph laplacian = 9.554e-6
[ Info: 2020-01-09 04:33:06 : Time taken to construct preconditioner = 0.004784411 seconds
[ Info: 2020-01-09 04:33:06 : Time taken to solve linear system = 8.3542e-5 seconds
[ Info: 2020-01-09 04:33:06 : Time taken to complete job = 2.053012681
[ 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-01-09 04:33:06 : Precision used: Double
[ Info: 2020-01-09 04:33:06 : Time taken to construct graph laplacian = 7.264e-6
[ Info: 2020-01-09 04:33:07 : Time taken to construct preconditioner = 1.19624824 seconds
[ Info: 2020-01-09 04:33:08 : Time taken to solve linear system = 0.664376215 seconds
[ Info: 2020-01-09 04:33:08 : Time taken to complete job = 2.348785122
[ 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-01-09 04:33:08 : Precision used: Double
[ Info: 2020-01-09 04:33:08 : Time taken to construct graph laplacian = 6.992e-6
[ Info: 2020-01-09 04:33:08 : Time taken to construct preconditioner = 0.000114343 seconds
[ Info: 2020-01-09 04:33:08 : Time taken to solve linear system = 2.3227e-5 seconds
[ Info: 2020-01-09 04:33:08 : Time taken to complete job = 0.001972286
[ 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-01-09 04:33:08 : Precision used: Double
[ Info: 2020-01-09 04:33:08 : Starting up Circuitscape to use 2 processes in parallel
[ Info: 2020-01-09 04:33:19 : Reading maps
[ Info: 2020-01-09 04:33:19 : Resistance/Conductance map has 59 nodes
[ Info: 2020-01-09 04:33:23 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:23 : Graph has 54 nodes, 10 focal points and 7 connected components
[ Info: 2020-01-09 04:33:23 : Total number of pair solves = 10
[ Info: 2020-01-09 04:33:23 : Time taken to construct preconditioner = 0.000672529 seconds
[ Info: 2020-01-09 04:33:23 : Time taken to construct local nodemap = 0.000177054 seconds
[ Info: 2020-01-09 04:33:41 : Scheduling pair 1 of 10 to be solved
[ Info: 2020-01-09 04:33:42 : Scheduling pair 2 of 10 to be solved
[ Info: 2020-01-09 04:33:42 : Scheduling pair 3 of 10 to be solved
[ Info: 2020-01-09 04:33:42 : Scheduling pair 4 of 10 to be solved
[ Info: 2020-01-09 04:33:42 : Solving pair 1 of 10
[ Info: 2020-01-09 04:33:42 : Time taken to solve linear system = 0.010773145 seconds
[ Info: 2020-01-09 04:33:42 : Time taken to write voltage maps = 0.054297814 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 1.603386996 seconds
[ Info: 2020-01-09 04:33:44 : Solving pair 2 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 0.000113749 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.000232724 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000301665 seconds
[ Info: 2020-01-09 04:33:44 : Solving pair 2 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 0.000105703 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.016397552 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000323897 seconds
[ Info: 2020-01-09 04:33:44 : Solving pair 3 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 0.000108299 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.000214243 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000302489 seconds
[ Info: 2020-01-09 04:33:44 : Solving pair 4 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 9.6617e-5 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.000219343 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000303796 seconds
[ Info: 2020-01-09 04:33:44 : Scheduling pair 8 of 10 to be solved
[ Info: 2020-01-09 04:33:44 : Scheduling pair 9 of 10 to be solved
[ Info: 2020-01-09 04:33:44 : Solving pair 8 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 9.3663e-5 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.000287425 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000309939 seconds
[ Info: 2020-01-09 04:33:44 : Solving pair 8 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 9.0239e-5 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.000211799 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000295314 seconds
[ Info: 2020-01-09 04:33:44 : Solving pair 9 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 8.8351e-5 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.000483686 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000296369 seconds
[ Info: 2020-01-09 04:33:44 : Solving pair 9 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 8.5003e-5 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.000195547 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000297104 seconds
[ Info: 2020-01-09 04:33:44 : Scheduling pair 10 of 10 to be solved
[ Info: 2020-01-09 04:33:44 : Solving pair 10 of 10
[ Info: 2020-01-09 04:33:44 : Time taken to solve linear system = 9.5225e-5 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write voltage maps = 0.00024899 seconds
[ Info: 2020-01-09 04:33:44 : Time taken to write current maps = 0.000303542 seconds
[ Info: 2020-01-09 04:33:45 : Scheduling pair 5 of 10 to be solved
[ Info: 2020-01-09 04:33:46 : Scheduling pair 6 of 10 to be solved
[ Info: 2020-01-09 04:33:46 : Scheduling pair 7 of 10 to be solved
[ Info: 2020-01-09 04:33:46 : Solving pair 5 of 10
[ Info: 2020-01-09 04:33:46 : Time taken to solve linear system = 0.014023904 seconds
[ Info: 2020-01-09 04:33:46 : Time taken to write voltage maps = 0.059171236 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to write current maps = 1.348240577 seconds
[ Info: 2020-01-09 04:33:47 : Solving pair 5 of 10
[ Info: 2020-01-09 04:33:47 : Time taken to solve linear system = 0.000142083 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to write voltage maps = 0.000271999 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to write current maps = 0.00034513 seconds
[ Info: 2020-01-09 04:33:47 : Solving pair 6 of 10
[ Info: 2020-01-09 04:33:47 : Time taken to solve linear system = 8.1796e-5 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to write voltage maps = 0.000207438 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to write current maps = 0.0003079 seconds
[ Info: 2020-01-09 04:33:47 : Solving pair 7 of 10
[ Info: 2020-01-09 04:33:47 : Time taken to solve linear system = 9.0017e-5 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to write voltage maps = 0.000206082 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to write current maps = 0.000298597 seconds
[ Info: 2020-01-09 04:33:47 : Time taken to complete job = 28.179256938
[ 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-01-09 04:33:48 : Precision used: Double
[ Info: 2020-01-09 04:33:48 : Reading maps
[ Info: 2020-01-09 04:33:48 : Resistance/Conductance map has 7 nodes
[ Info: 2020-01-09 04:33:48 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:48 : Graph has 6 nodes, 5 focal points and 1 connected components
[ Info: 2020-01-09 04:33:48 : Total number of pair solves = 6
[ Info: 2020-01-09 04:33:48 : Time taken to construct preconditioner = 0.000216826 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to construct local nodemap = 2.1891e-5 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 1 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 5.8573e-5 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 4 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.002441954 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 2.3623e-5 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.371270979 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000160233 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 1 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000250008 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 2.7812e-5 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 5 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000120979 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 1.6353e-5 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000171855 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000115291 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 2 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000161789 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 1.3364e-5 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000129684 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000176878 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 6 of 6
[ Info: 2020-01-09 04:33:48 : Solving pair 2 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 1.822e-5 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 7.662e-6 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000130902 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000115478 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000156495 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000157823 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 3 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 1.3551e-5 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000113338 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000167128 seconds
[ Info: 2020-01-09 04:33:48 : Solving pair 3 of 6
[ Info: 2020-01-09 04:33:48 : Time taken to solve linear system = 1.4181e-5 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write voltage maps = 0.000176411 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to write current maps = 0.000157603 seconds
[ Info: 2020-01-09 04:33:48 : Time taken to complete job = 0.701952436
[ 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-01-09 04:33:48 : Precision used: Double
[ Info: 2020-01-09 04:33:48 : Reading maps
[ Info: 2020-01-09 04:33:48 : Resistance/Conductance map has 75 nodes
[ Info: 2020-01-09 04:33:49 : Total number of pair solves = 3
[ Info: 2020-01-09 04:33:49 : Solving pair 1 of 3
[ Info: 2020-01-09 04:33:49 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:49 : Graph has 69 nodes, 2 focal points and 3 connected components
[ Info: 2020-01-09 04:33:49 : Time taken to construct preconditioner = 0.000363818 seconds
[ Info: 2020-01-09 04:33:49 : Time taken to construct local nodemap = 0.000165686 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 8.4521e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000314522 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.00042739 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 2 of 3
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 69 nodes, 2 focal points and 3 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000142474 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 4.6741e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.065002128 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 8.5785e-5 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 3 of 3
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 70 nodes, 2 focal points and 4 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000132777 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 3.6877e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000222817 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 6.4133e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to complete job = 1.366609941
[ 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
[ Info: 2020-01-09 04:33:50 : Precision used: Double
[ Info: 2020-01-09 04:33:50 : Reading maps
[ Info: 2020-01-09 04:33:50 : Resistance/Conductance map has 59 nodes
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 59 nodes, 10 focal points and 7 connected components
[ Info: 2020-01-09 04:33:50 : Total number of pair solves = 15
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000296894 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 3.2801e-5 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 1 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 9.2101e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000266764 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000340075 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 2 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 8.7575e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000201903 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000311078 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 3 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 0.000220145 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.003012066 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000388759 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 4 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 0.000100549 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000227876 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000331601 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 5 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 0.00010177 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000351927 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.00065935 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 6 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 7.5867e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000416659 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000474466 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 7 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 8.4417e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000754152 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000307894 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 8 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 8.794e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000204565 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000283169 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 9 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 7.9752e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.00019935 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.022066867 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 10 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 7.92e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000269902 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.01188479 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 11 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 9.2723e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000215294 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000320875 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 12 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 7.6516e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000205936 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000293826 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 13 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 8.3066e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000199507 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000289118 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 14 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 7.0774e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000209792 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000282051 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 15 of 15
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 8.2403e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000711271 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000281001 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to complete job = 0.068084071
[ Info: Testing sgVerify4_cum_curmap.asc
[ Info: Test sgVerify4_cum_curmap.asc passed
[ Info: Testing sgVerify4_curmap_1_2.asc
[ Info: Test sgVerify4_curmap_1_2.asc passed
[ Info: Testing sgVerify4_curmap_1_4.asc
[ Info: Test sgVerify4_curmap_1_4.asc passed
[ Info: Testing sgVerify4_curmap_1_5.asc
[ Info: Test sgVerify4_curmap_1_5.asc passed
[ Info: Testing sgVerify4_curmap_1_8.asc
[ Info: Test sgVerify4_curmap_1_8.asc passed
[ Info: Testing sgVerify4_curmap_1_9.asc
[ Info: Test sgVerify4_curmap_1_9.asc passed
[ Info: Testing sgVerify4_curmap_2_4.asc
[ Info: Test sgVerify4_curmap_2_4.asc passed
[ Info: Testing sgVerify4_curmap_2_5.asc
[ Info: Test sgVerify4_curmap_2_5.asc passed
[ Info: Testing sgVerify4_curmap_2_8.asc
[ Info: Test sgVerify4_curmap_2_8.asc passed
[ Info: Testing sgVerify4_curmap_2_9.asc
[ Info: Test sgVerify4_curmap_2_9.asc passed
[ Info: Testing sgVerify4_curmap_4_5.asc
[ Info: Test sgVerify4_curmap_4_5.asc passed
[ Info: Testing sgVerify4_curmap_4_8.asc
[ Info: Test sgVerify4_curmap_4_8.asc passed
[ Info: Testing sgVerify4_curmap_4_9.asc
[ Info: Test sgVerify4_curmap_4_9.asc passed
[ Info: Testing sgVerify4_curmap_5_8.asc
[ Info: Test sgVerify4_curmap_5_8.asc passed
[ Info: Testing sgVerify4_curmap_5_9.asc
[ Info: Test sgVerify4_curmap_5_9.asc passed
[ Info: Testing sgVerify4_curmap_8_9.asc
[ Info: Test sgVerify4_curmap_8_9.asc passed
[ Info: Testing sgVerify4_voltmap_1_2.asc
[ Info: Test sgVerify4_voltmap_1_2.asc passed
[ Info: Testing sgVerify4_voltmap_1_4.asc
[ Info: Test sgVerify4_voltmap_1_4.asc passed
[ Info: Testing sgVerify4_voltmap_1_5.asc
[ Info: Test sgVerify4_voltmap_1_5.asc passed
[ Info: Testing sgVerify4_voltmap_1_8.asc
[ Info: Test sgVerify4_voltmap_1_8.asc passed
[ Info: Testing sgVerify4_voltmap_1_9.asc
[ Info: Test sgVerify4_voltmap_1_9.asc passed
[ Info: Testing sgVerify4_voltmap_2_4.asc
[ Info: Test sgVerify4_voltmap_2_4.asc passed
[ Info: Testing sgVerify4_voltmap_2_5.asc
[ Info: Test sgVerify4_voltmap_2_5.asc passed
[ Info: Testing sgVerify4_voltmap_2_8.asc
[ Info: Test sgVerify4_voltmap_2_8.asc passed
[ Info: Testing sgVerify4_voltmap_2_9.asc
[ Info: Test sgVerify4_voltmap_2_9.asc passed
[ Info: Testing sgVerify4_voltmap_4_5.asc
[ Info: Test sgVerify4_voltmap_4_5.asc passed
[ Info: Testing sgVerify4_voltmap_4_8.asc
[ Info: Test sgVerify4_voltmap_4_8.asc passed
[ Info: Testing sgVerify4_voltmap_4_9.asc
[ Info: Test sgVerify4_voltmap_4_9.asc passed
[ Info: Testing sgVerify4_voltmap_5_8.asc
[ Info: Test sgVerify4_voltmap_5_8.asc passed
[ Info: Testing sgVerify4_voltmap_5_9.asc
[ Info: Test sgVerify4_voltmap_5_9.asc passed
[ Info: Testing sgVerify4_voltmap_8_9.asc
[ Info: Test sgVerify4_voltmap_8_9.asc passed
[ Info: Test sgVerify4 passed
[ Info: Testing sgVerify5
[ Info: 2020-01-09 04:33:50 : Precision used: Double
[ Info: 2020-01-09 04:33:50 : Reading maps
[ Info: 2020-01-09 04:33:50 : Resistance/Conductance map has 14 nodes
[ Info: 2020-01-09 04:33:50 : Total number of pair solves = 10
[ Info: 2020-01-09 04:33:50 : Solving pair 1 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 10 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000180758 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 6.811e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 2.0759e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000216467 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000211315 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 2 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 11 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000120324 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 6.673e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 2.7531e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000137481 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000197273 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 3 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 11 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 9.8788e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 1.0635e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 2.9354e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000176731 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.0001743 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 4 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 11 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 9.1939e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 8.259e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 2.7328e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000139488 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000255971 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 5 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 11 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000152173 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 7.266e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 3.4153e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000193347 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000217444 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 6 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 11 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000134607 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 1.1336e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 3.115e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.00014585 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.00025105 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 7 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 11 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000121911 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 9.028e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 3.1084e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000144847 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000181579 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 8 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 12 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000109935 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 7.969e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 3.2686e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000135236 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000175187 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 9 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 12 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000116337 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 6.671e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 3.1349e-5 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write voltage maps = 0.000189342 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to write current maps = 0.000175451 seconds
[ Info: 2020-01-09 04:33:50 : Solving pair 10 of 10
[ Info: 2020-01-09 04:33:50 : Solver used: AMG accelerated by CG
[ Info: 2020-01-09 04:33:50 : Graph has 12 nodes, 2 focal points and 1 connected components
[ Info: 2020-01-09 04:33:50 : Time taken to construct preconditioner = 0.000111543 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to construct local nodemap = 7.012e-6 seconds
[ Info: 2020-01-09 04:33:50 : Time taken to solve linear system = 3.3532e-5 seconds