-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-7206b56e94.log
1427 lines (1415 loc) · 73.4 KB
/
1.5.0-DEV-7206b56e94.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.485
Commit 7206b56e94 (2020-03-18 17:25 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-9.0.1 (ORCJIT, skylake)
Environment:
JULIA_DEPOT_PATH = ::/usr/local/share/julia
JULIA_NUM_THREADS = 2
Resolving package versions...
Installed SortingAlgorithms ──────────── v0.3.1
Installed PDMats ─────────────────────── v0.9.12
Installed Nullables ──────────────────── v1.0.0
Installed Parameters ─────────────────── v0.12.0
Installed BinDeps ────────────────────── v1.0.0
Installed OptiMimi ───────────────────── v2.0.0
Installed DataFrames ─────────────────── v0.20.2
Installed Distributions ──────────────── v0.23.0
Installed CMake ──────────────────────── v1.2.0
Installed DataValueInterfaces ────────── v1.0.0
Installed NodeJS ─────────────────────── v1.1.1
Installed Rmath_jll ──────────────────── v0.2.2+0
Installed StringBuilders ─────────────── v0.2.0
Installed FixedPointNumbers ──────────── v0.7.1
Installed IterableTables ─────────────── v1.0.0
Installed CategoricalArrays ──────────── v0.7.7
Installed CodecZlib ──────────────────── v0.6.0
Installed Arpack_jll ─────────────────── v3.5.0+2
Installed ConstructionBase ───────────── v1.0.0
Installed QuadGK ─────────────────────── v2.3.1
Installed StatsFuns ──────────────────── v0.9.4
Installed StatsBase ──────────────────── v0.32.2
Installed DiffResults ────────────────── v0.0.4
Installed StaticArrays ───────────────── v0.12.1
Installed WeakRefStrings ─────────────── v0.6.2
Installed JLD2 ───────────────────────── v0.1.12
Installed Setfield ───────────────────── v0.6.0
Installed Combinatorics ──────────────── v1.0.0
Installed CMakeWrapper ───────────────── v0.2.3
Installed LinQuadOptInterface ────────── v0.6.0
Installed CommonSubexpressions ───────── v0.2.0
Installed JSON ───────────────────────── v0.21.0
Installed Mimi ───────────────────────── v0.8.7
Installed MbedTLS_jll ────────────────── v2.16.0+1
Installed DataStructures ─────────────── v0.17.10
Installed MathProgBase ───────────────── v0.7.8
Installed OpenBLAS_jll ───────────────── v0.3.7+7
Installed ColorTypes ─────────────────── v0.9.1
Installed Measures ───────────────────── v0.3.1
Installed TableShowUtils ─────────────── v0.2.5
Installed NaNMath ────────────────────── v0.3.3
Installed GenericSVD ─────────────────── v0.3.0
Installed IterTools ──────────────────── v1.3.0
Installed CompilerSupportLibraries_jll ─ v0.3.0+0
Installed Reexport ───────────────────── v0.2.0
Installed Sobol ──────────────────────── v1.3.0
Installed ProgressMeter ──────────────── v1.2.0
Installed PooledArrays ───────────────── v0.5.3
Installed RecipesBase ────────────────── v0.8.0
Installed Rmath ──────────────────────── v0.6.1
Installed GenericSchur ───────────────── v0.4.0
Installed GlobalSensitivityAnalysis ──── v0.0.5
Installed DataValues ─────────────────── v0.4.13
Installed InvertedIndices ────────────── v1.0.0
Installed BinaryProvider ─────────────── v0.5.8
Installed DataAPI ────────────────────── v1.1.0
Installed Parsers ────────────────────── v0.3.12
Installed MetaGraphs ─────────────────── v0.6.5
Installed SpecialFunctions ───────────── v0.10.0
Installed Compose ────────────────────── v0.8.1
Installed MathOptInterface ───────────── v0.8.4
Installed CPUTime ────────────────────── v1.0.0
Installed OpenSpecFun_jll ────────────── v0.5.3+3
Installed Polynomials ────────────────── v0.6.1
Installed IniFile ────────────────────── v0.5.0
Installed DoubleFloats ───────────────── v1.1.6
Installed FileIO ─────────────────────── v1.2.3
Installed FilePaths ──────────────────── v0.8.0
Installed Colors ─────────────────────── v0.11.2
Installed Missings ───────────────────── v0.4.3
Installed SimpleTraits ───────────────── v0.9.1
Installed HTTP ───────────────────────── v0.8.12
Installed LightGraphs ────────────────── v1.3.1
Installed TextParse ──────────────────── v1.0.0
Installed BlackBoxOptim ──────────────── v0.5.0
Installed Requires ───────────────────── v1.0.1
Installed GraphPlot ──────────────────── v0.3.1
Installed Clp ────────────────────────── v0.6.2
Installed NamedArrays ────────────────── v0.9.4
Installed Quadmath ───────────────────── v0.5.4
Installed CSVFiles ───────────────────── v1.0.0
Installed IteratorInterfaceExtensions ── v1.0.0
Installed JSONSchema ─────────────────── v0.2.0
Installed Electron ───────────────────── v2.0.1
Installed Tables ─────────────────────── v1.0.3
Installed ArnoldiMethod ──────────────── v0.0.4
Installed MacroTools ─────────────────── v0.5.4
Installed URIParser ──────────────────── v0.4.0
Installed TableTraitsUtils ───────────── v1.0.1
Installed Arpack ─────────────────────── v0.4.0
Installed Inflate ────────────────────── v0.1.1
Installed ForwardDiff ────────────────── v0.10.9
Installed FilePathsBase ──────────────── v0.6.2
Installed VegaLite ───────────────────── v2.0.1
Installed MbedTLS ────────────────────── v1.0.1
Installed DiffRules ──────────────────── v0.0.10
Installed SpatialIndexing ────────────── v0.1.2
Installed Compat ─────────────────────── v2.2.0
Installed OrderedCollections ─────────── v1.1.0
Installed TranscodingStreams ─────────── v0.9.5
Installed TableTraits ────────────────── v1.0.0
Installed FillArrays ─────────────────── v0.8.5
Installed NLopt ──────────────────────── v0.5.1
#=#=# 0.5%## 3.5%##### 7.6%######## 12.0%############# 19.0%################# 24.9%####################### 33.1%################################ 44.8%########################################## 59.5%########################################################### 82.3%######################################################################## 100.0%
#=#=# ######################################################################## 100.0%
#=#=# ######################################################################## 100.0%
#=#=# ################################# 47.1%######################################################################## 100.0%
#=#=# # 2.6%##### 7.2%########## 14.3%################ 23.5%##################### 30.2%######################### 35.6%################################### 49.9%################################################ 67.2%############################################################### 88.6%######################################################################## 100.0%
#=#=# ##O#- # ## 3.1%##### 8.1%######### 12.8%############## 20.4%###################### 30.9%################################ 45.1%#################################### 50.4%################################################ 66.9%############################################################ 84.5%######################################################################## 100.0%
#=#=# ######################################################################## 100.0%
#=#=# ##O#- # ##O=# # 0.4% 0.8%# 1.4%# 2.5%### 4.3%#### 6.8%###### 9.2%######## 12.1%########### 16.0%########### 16.0%############ 17.3%############### 21.7%################### 26.4%####################### 33.2%############################# 41.4%############################### 43.6%################################## 48.0%####################################### 54.6%############################################ 61.6%################################################## 69.5%########################################################## 81.8%############################################################## 87.0%###################################################################### 98.3%######################################################################## 100.0%
#=#=# ##O#- # 1.0%## 3.0%### 5.5%###### 8.4%####### 10.6%########## 14.1%############ 17.6%############### 21.0%#################### 28.0%######################### 35.3%################################ 44.5%####################################### 54.5%################################################# 68.3%############################################################# 86.0%######################################################################## 100.0%
Updating `~/.julia/environments/v1.5/Project.toml`
61d5e40c + OptiMimi v2.0.0
Updating `~/.julia/environments/v1.5/Manifest.toml`
ec485272 + ArnoldiMethod v0.0.4
7d9fca2a + Arpack v0.4.0
68821587 + Arpack_jll v3.5.0+2
9e28174c + BinDeps v1.0.0
b99e7846 + BinaryProvider v0.5.8
a134a8b2 + BlackBoxOptim v0.5.0
631607c0 + CMake v1.2.0
d5fb7624 + CMakeWrapper v0.2.3
a9c8d775 + CPUTime v1.0.0
5d742f6a + CSVFiles v1.0.0
324d7699 + CategoricalArrays v0.7.7
e2554f3b + Clp v0.6.2
944b1d66 + CodecZlib v0.6.0
3da002f7 + ColorTypes v0.9.1
5ae59095 + Colors v0.11.2
861a8166 + Combinatorics v1.0.0
bbf7d656 + CommonSubexpressions v0.2.0
34da2185 + Compat v2.2.0
e66e0078 + CompilerSupportLibraries_jll v0.3.0+0
a81c6b42 + Compose v0.8.1
187b0558 + ConstructionBase v1.0.0
9a962f9c + DataAPI v1.1.0
a93c6f00 + DataFrames v0.20.2
864edb3b + DataStructures v0.17.10
e2d170a0 + DataValueInterfaces v1.0.0
e7dc6d0d + DataValues v0.4.13
163ba53b + DiffResults v0.0.4
b552c78f + DiffRules v0.0.10
31c24e10 + Distributions v0.23.0
497a8b3b + DoubleFloats v1.1.6
a1bb12fb + Electron v2.0.1
5789e2e9 + FileIO v1.2.3
8fc22ac5 + FilePaths v0.8.0
48062228 + FilePathsBase v0.6.2
1a297f60 + FillArrays v0.8.5
53c48c17 + FixedPointNumbers v0.7.1
f6369f11 + ForwardDiff v0.10.9
01680d73 + GenericSVD v0.3.0
c145ed77 + GenericSchur v0.4.0
1b10255b + GlobalSensitivityAnalysis v0.0.5
a2cc645c + GraphPlot v0.3.1
cd3eb016 + HTTP v0.8.12
d25df0c9 + Inflate v0.1.1
83e8ac13 + IniFile v0.5.0
41ab1584 + InvertedIndices v1.0.0
c8e1da08 + IterTools v1.3.0
1c8ee90f + IterableTables v1.0.0
82899510 + IteratorInterfaceExtensions v1.0.0
033835bb + JLD2 v0.1.12
682c06a0 + JSON v0.21.0
7d188eb4 + JSONSchema v0.2.0
093fc24a + LightGraphs v1.3.1
f8899e07 + LinQuadOptInterface v0.6.0
1914dd2f + MacroTools v0.5.4
b8f27783 + MathOptInterface v0.8.4
fdba3010 + MathProgBase v0.7.8
739be429 + MbedTLS v1.0.1
c8ffd9c3 + MbedTLS_jll v2.16.0+1
442fdcdd + Measures v0.3.1
626554b9 + MetaGraphs v0.6.5
e4e893b0 + Mimi v0.8.7
e1d29d7a + Missings v0.4.3
76087f3c + NLopt v0.5.1
77ba4419 + NaNMath v0.3.3
86f7a689 + NamedArrays v0.9.4
2bd173c7 + NodeJS v1.1.1
4d1e1d77 + Nullables v1.0.0
4536629a + OpenBLAS_jll v0.3.7+7
efe28fd5 + OpenSpecFun_jll v0.5.3+3
61d5e40c + OptiMimi v2.0.0
bac558e1 + OrderedCollections v1.1.0
90014a1f + PDMats v0.9.12
d96e819e + Parameters v0.12.0
69de0a69 + Parsers v0.3.12
f27b6e38 + Polynomials v0.6.1
2dfb63ee + PooledArrays v0.5.3
92933f4c + ProgressMeter v1.2.0
1fd47b50 + QuadGK v2.3.1
be4d8f0f + Quadmath v0.5.4
3cdcf5f2 + RecipesBase v0.8.0
189a3867 + Reexport v0.2.0
ae029012 + Requires v1.0.1
79098fc4 + Rmath v0.6.1
f50d1b31 + Rmath_jll v0.2.2+0
efcf1570 + Setfield v0.6.0
699a6c99 + SimpleTraits v0.9.1
ed01d8cd + Sobol v1.3.0
a2af1166 + SortingAlgorithms v0.3.1
d4ead438 + SpatialIndexing v0.1.2
276daf66 + SpecialFunctions v0.10.0
90137ffa + StaticArrays v0.12.1
2913bbd2 + StatsBase v0.32.2
4c63d2b9 + StatsFuns v0.9.4
db12335b + StringBuilders v0.2.0
5e66a065 + TableShowUtils v0.2.5
3783bdb8 + TableTraits v1.0.0
382cd787 + TableTraitsUtils v1.0.1
bd369af6 + Tables v1.0.3
e0df1984 + TextParse v1.0.0
3bb67fe8 + TranscodingStreams v0.9.5
30578b45 + URIParser v0.4.0
112f6efa + VegaLite v2.0.1
ea10d353 + WeakRefStrings v0.6.2
2a0f44e3 + Base64
ade2ca70 + Dates
8bb1440f + DelimitedFiles
8ba89e20 + Distributed
9fa8497b + Future
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
4607b0f0 + SuiteSparse
8dfed614 + Test
cf7118a7 + UUIDs
4ec0a83e + Unicode
Building CMake ────→ `~/.julia/packages/CMake/ULbyn/deps/build.log`
Building CodecZlib → `~/.julia/packages/CodecZlib/5t9zO/deps/build.log`
Building Clp ──────→ `~/.julia/packages/Clp/IBQzB/deps/build.log`
Building NLopt ────→ `~/.julia/packages/NLopt/eqN9a/deps/build.log`
Testing OptiMimi
Status `/tmp/jl_KCcoZ4/Project.toml`
a134a8b2 BlackBoxOptim v0.5.0
e2554f3b Clp v0.6.2
a93c6f00 DataFrames v0.20.2
163ba53b DiffResults v0.0.4
b552c78f DiffRules v0.0.10
31c24e10 Distributions v0.23.0
f6369f11 ForwardDiff v0.10.9
fdba3010 MathProgBase v0.7.8
e4e893b0 Mimi v0.8.7
76087f3c NLopt v0.5.1
61d5e40c OptiMimi v2.0.0
44cfe95a Pkg
2f01184e SparseArrays
8dfed614 Test
Status `/tmp/jl_KCcoZ4/Manifest.toml`
ec485272 ArnoldiMethod v0.0.4
7d9fca2a Arpack v0.4.0
68821587 Arpack_jll v3.5.0+2
9e28174c BinDeps v1.0.0
b99e7846 BinaryProvider v0.5.8
a134a8b2 BlackBoxOptim v0.5.0
631607c0 CMake v1.2.0
d5fb7624 CMakeWrapper v0.2.3
a9c8d775 CPUTime v1.0.0
5d742f6a CSVFiles v1.0.0
324d7699 CategoricalArrays v0.7.7
e2554f3b Clp v0.6.2
944b1d66 CodecZlib v0.6.0
3da002f7 ColorTypes v0.9.1
5ae59095 Colors v0.11.2
861a8166 Combinatorics v1.0.0
bbf7d656 CommonSubexpressions v0.2.0
34da2185 Compat v2.2.0
e66e0078 CompilerSupportLibraries_jll v0.3.0+0
a81c6b42 Compose v0.8.1
187b0558 ConstructionBase v1.0.0
9a962f9c DataAPI v1.1.0
a93c6f00 DataFrames v0.20.2
864edb3b DataStructures v0.17.10
e2d170a0 DataValueInterfaces v1.0.0
e7dc6d0d DataValues v0.4.13
163ba53b DiffResults v0.0.4
b552c78f DiffRules v0.0.10
31c24e10 Distributions v0.23.0
497a8b3b DoubleFloats v1.1.6
a1bb12fb Electron v2.0.1
5789e2e9 FileIO v1.2.3
8fc22ac5 FilePaths v0.8.0
48062228 FilePathsBase v0.6.2
1a297f60 FillArrays v0.8.5
53c48c17 FixedPointNumbers v0.7.1
f6369f11 ForwardDiff v0.10.9
01680d73 GenericSVD v0.3.0
c145ed77 GenericSchur v0.4.0
1b10255b GlobalSensitivityAnalysis v0.0.5
a2cc645c GraphPlot v0.3.1
cd3eb016 HTTP v0.8.12
d25df0c9 Inflate v0.1.1
83e8ac13 IniFile v0.5.0
41ab1584 InvertedIndices v1.0.0
c8e1da08 IterTools v1.3.0
1c8ee90f IterableTables v1.0.0
82899510 IteratorInterfaceExtensions v1.0.0
033835bb JLD2 v0.1.12
682c06a0 JSON v0.21.0
7d188eb4 JSONSchema v0.2.0
093fc24a LightGraphs v1.3.1
f8899e07 LinQuadOptInterface v0.6.0
1914dd2f MacroTools v0.5.4
b8f27783 MathOptInterface v0.8.4
fdba3010 MathProgBase v0.7.8
739be429 MbedTLS v1.0.1
c8ffd9c3 MbedTLS_jll v2.16.0+1
442fdcdd Measures v0.3.1
626554b9 MetaGraphs v0.6.5
e4e893b0 Mimi v0.8.7
e1d29d7a Missings v0.4.3
76087f3c NLopt v0.5.1
77ba4419 NaNMath v0.3.3
86f7a689 NamedArrays v0.9.4
2bd173c7 NodeJS v1.1.1
4d1e1d77 Nullables v1.0.0
4536629a OpenBLAS_jll v0.3.7+7
efe28fd5 OpenSpecFun_jll v0.5.3+3
61d5e40c OptiMimi v2.0.0
bac558e1 OrderedCollections v1.1.0
90014a1f PDMats v0.9.12
d96e819e Parameters v0.12.0
69de0a69 Parsers v0.3.12
f27b6e38 Polynomials v0.6.1
2dfb63ee PooledArrays v0.5.3
92933f4c ProgressMeter v1.2.0
1fd47b50 QuadGK v2.3.1
be4d8f0f Quadmath v0.5.4
3cdcf5f2 RecipesBase v0.8.0
189a3867 Reexport v0.2.0
ae029012 Requires v1.0.1
79098fc4 Rmath v0.6.1
f50d1b31 Rmath_jll v0.2.2+0
efcf1570 Setfield v0.6.0
699a6c99 SimpleTraits v0.9.1
ed01d8cd Sobol v1.3.0
a2af1166 SortingAlgorithms v0.3.1
d4ead438 SpatialIndexing v0.1.2
276daf66 SpecialFunctions v0.10.0
90137ffa StaticArrays v0.12.1
2913bbd2 StatsBase v0.32.2
4c63d2b9 StatsFuns v0.9.4
db12335b StringBuilders v0.2.0
5e66a065 TableShowUtils v0.2.5
3783bdb8 TableTraits v1.0.0
382cd787 TableTraitsUtils v1.0.1
bd369af6 Tables v1.0.3
e0df1984 TextParse v1.0.0
3bb67fe8 TranscodingStreams v0.9.5
30578b45 URIParser v0.4.0
112f6efa VegaLite v2.0.1
ea10d353 WeakRefStrings v0.6.2
2a0f44e3 Base64
ade2ca70 Dates
8bb1440f DelimitedFiles
8ba89e20 Distributed
9fa8497b Future
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
4607b0f0 SuiteSparse
8dfed614 Test
cf7118a7 UUIDs
4ec0a83e Unicode
Cloning git-repo `https://github.com/mimiframework/Mimi.jl.git`
[?25l Fetching: [> ] 0.0 %[2K[?25h Updating git-repo `https://github.com/mimiframework/Mimi.jl.git`
[?25l Fetching: [> ] 0.0 %[2K[?25h Resolving package versions...
Installed DiffRules ───────────────── v0.1.0
Installed Clp ─────────────────────── v0.7.1
Installed SpecialFunctions ────────── v0.9.0
Installed BenchmarkTools ──────────── v0.5.0
Installed Classes ─────────────────── v1.2.0
Installed MutableArithmetics ──────── v0.2.7
Installed GlobalSensitivityAnalysis ─ v0.0.9
Installed Distributions ───────────── v0.21.12
Installed CodecBzip2 ──────────────── v0.6.0
Installed MathOptInterface ────────── v0.9.12
Updating `/tmp/jl_KCcoZ4/Project.toml`
e2554f3b ↑ Clp v0.6.2 ⇒ v0.7.1
b552c78f ↑ DiffRules v0.0.10 ⇒ v0.1.0
31c24e10 ↓ Distributions v0.23.0 ⇒ v0.21.12
e4e893b0 ~ Mimi v0.8.7 ⇒ v0.10.0-DEV `https://github.com/mimiframework/Mimi.jl.git#master`
Updating `/tmp/jl_KCcoZ4/Manifest.toml`
6e4b80f9 + BenchmarkTools v0.5.0
1a9c1350 + Classes v1.2.0
e2554f3b ↑ Clp v0.6.2 ⇒ v0.7.1
523fee87 + CodecBzip2 v0.6.0
b552c78f ↑ DiffRules v0.0.10 ⇒ v0.1.0
31c24e10 ↓ Distributions v0.23.0 ⇒ v0.21.12
1b10255b ↑ GlobalSensitivityAnalysis v0.0.5 ⇒ v0.0.9
f8899e07 - LinQuadOptInterface v0.6.0
b8f27783 ↑ MathOptInterface v0.8.4 ⇒ v0.9.12
e4e893b0 ~ Mimi v0.8.7 ⇒ v0.10.0-DEV `https://github.com/mimiframework/Mimi.jl.git#master`
d8a4904e + MutableArithmetics v0.2.7
276daf66 ↓ SpecialFunctions v0.10.0 ⇒ v0.9.0
Building CodecBzip2 → `~/.julia/packages/CodecBzip2/T5yr7/deps/build.log`
Building Clp ───────→ `~/.julia/packages/Clp/yT2iA/deps/build.log`
0.001010 seconds (55 allocations: 5.109 KiB)
[7.999999999999998, 7.999999999999998, 3.000000000000001, 3.000000000000001]
┌ Warning: Implicit broadcasting to a new column in DataFrame assignment is deprecated.Use `df[!, col_ind] .= v` when `df` has some columns
│ caller = constraining(::LinearProgrammingHouse, ::Array{Float64,1}; subset::Array{Any,1}) at linproghouse.jl:825
└ @ OptiMimi ~/.julia/packages/OptiMimi/NvOLg/src/linproghouse.jl:825
┌ Warning: Implicit broadcasting to a new column in DataFrame assignment is deprecated.Use `df[!, col_ind] .= v` when `df` has some columns
│ caller = constraining(::LinearProgrammingHouse, ::Array{Float64,1}; subset::Array{Any,1}) at linproghouse.jl:826
└ @ OptiMimi ~/.julia/packages/OptiMimi/NvOLg/src/linproghouse.jl:826
┌ Warning: Implicit broadcasting to a new column in DataFrame assignment is deprecated.Use `df[!, col_ind] .= v` when `df` has some columns
│ caller = constraining(::LinearProgrammingHouse, ::Array{Float64,1}; subset::Array{Any,1}) at linproghouse.jl:830
└ @ OptiMimi ~/.julia/packages/OptiMimi/NvOLg/src/linproghouse.jl:830
┌ Warning: Implicit broadcasting to a new column in DataFrame assignment is deprecated.Use `df[!, col_ind] .= v` when `df` has some columns
│ caller = constraining(::LinearProgrammingHouse, ::Array{Float64,1}; subset::Array{Any,1}) at linproghouse.jl:831
└ @ OptiMimi ~/.julia/packages/OptiMimi/NvOLg/src/linproghouse.jl:831
Ignore:
0.5
1.0
4×5 DataFrames.DataFrame
│ Row │ solution │ component │ parameter │ abovefail │ belowfail │
│ │ Float64 │ Symbol │ Symbol │ String │ String │
├─────┼──────────┼───────────┼───────────┼─────────────────┼───────────┤
│ 1 │ 8.0 │ Cabinets │ x │ cost.1, space.1 │ │
│ 2 │ 8.0 │ Cabinets │ x │ cost.2, space.2 │ │
│ 3 │ 3.0 │ Cabinets │ y │ cost.1, space.1 │ │
│ 4 │ 3.0 │ Cabinets │ y │ cost.2, space.2 │ │
GC error (probable corruption) :
Allocations: 90861830 (Pool: 90832614; Big: 29216); GC: 88
<?#0x7efc609d80e0::(nil)>
0x7efc39bae010: Queued root: 0x7efc6820b220 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae028: Queued root: 0x7efc1f6e7550 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae040: Queued root: 0x7efc66fed820 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae058: Queued root: 0x7efc1f6e75b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae070: Queued root: 0x7efc652462d0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae088: Queued root: 0x7efc65adca50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae0a0: Queued root: 0x7efc6619ba70 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae0b8: Queued root: 0x7efc686d0e30 :: 0x7efc64ff3bc0 (bits: 3)
of type Core.SimpleVector
0x7efc39bae0d0: Queued root: 0x7efc66dfbed0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae0e8: Queued root: 0x7efc66194770 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae100: Queued root: 0x7efc65e0b1b0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae118: Queued root: 0x7efc66ac6af0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae130: Queued root: 0x7efc66a40f20 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae148: Queued root: 0x7efc66a41620 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae160: Queued root: 0x7efc65e10b40 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae178: Queued root: 0x7efc65056fa0 :: 0x7efc64ff03e0 (bits: 3)
of type Core.TypeName
0x7efc39bae190: Queued root: 0x7efc65e0bca0 :: 0x7efc64ff3ce0 (bits: 3)
of type Core.MethodTable
0x7efc39bae1a8: Queued root: 0x7efc65e0ecf0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae1c0: Queued root: 0x7efc3e8a4550 :: 0x7efc64ff3bc0 (bits: 3)
of type Core.SimpleVector
0x7efc39bae1d8: Queued root: 0x7efc65075c30 :: 0x7efc64ff03e0 (bits: 3)
of type Core.TypeName
0x7efc39bae1f0: Queued root: 0x7efc66ac3c40 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae208: Queued root: 0x7efc66fe9430 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae220: Queued root: 0x7efc660bafb0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae238: Queued root: 0x7efc668a4640 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae250: Queued root: 0x7efc679cd740 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae268: Queued root: 0x7efc6772c950 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae280: Queued root: 0x7efc67ee51b0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae298: Queued root: 0x7efc689d6710 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae2b0: Queued root: 0x7efc65e0ecc0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae2c8: Queued root: 0x7efc67195a40 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae2e0: Queued root: 0x7efc652eba20 :: 0x7efc64ff3ce0 (bits: 3)
of type Core.MethodTable
0x7efc39bae2f8: Queued root: 0x7efc65adeb50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae310: Queued root: 0x7efc671973c0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae328: Queued root: 0x7efc60012a40 :: 0x7efc65042d50 (bits: 3)
of type Core.TypeMapEntry
0x7efc39bae340: Queued root: 0x7efc6749dfa0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae358: Queued root: 0x7efc66fe6d00 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae370: Queued root: 0x7efc66ff79a0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae388: Queued root: 0x7efc65aca5d0 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae3a0: Queued root: 0x7efc65acb410 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae3b8: Queued root: 0x7efc67548f50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae3d0: Queued root: 0x7efc67d877f0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae3e8: Queued root: 0x7efc67549a80 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae400: Queued root: 0x7efc6754ad10 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae418: Queued root: 0x7efc655c6810 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae430: Queued root: 0x7efc675b3030 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae448: Queued root: 0x7efc655c74b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae460: Queued root: 0x7efc6754a180 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae478: Queued root: 0x7efc655c84d0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae490: Queued root: 0x7efc655c8ca0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae4a8: Queued root: 0x7efc68276250 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae4c0: Queued root: 0x7efc66fead70 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae4d8: Queued root: 0x7efc6749ffa0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae4f0: Queued root: 0x7efc6629cf50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae508: Queued root: 0x7efc66a4b890 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae520: Queued root: 0x7efc6615bbd0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae538: Queued root: 0x7efc6613ff00 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae550: Queued root: 0x7efc6629cc60 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae568: Queued root: 0x7efc1ef400e0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae580: Queued root: 0x7efc653cbb30 :: 0x7efc64ff3ce0 (bits: 3)
of type Core.MethodTable
0x7efc39bae598: Queued root: 0x7efc3c39cf80 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae5b0: Queued root: 0x7efc67d44cf0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae5c8: Queued root: 0x7efc32bf9e10 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae5e0: Queued root: 0x7efc1f5f69b0 :: 0x7efc64ff3ce0 (bits: 3)
of type Core.MethodTable
0x7efc39bae5f8: Queued root: 0x7efc1fa81a30 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae610: Queued root: 0x7efc3340d710 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39bae628: Queued root: 0x7efc1fa73450 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae640: Queued root: 0x7efc1f3ae890 :: 0x7efc64ff3ce0 (bits: 3)
of type Core.MethodTable
0x7efc39bae658: Queued root: 0x7efc1fa72f80 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae670: Queued root: 0x7efc1ed04fd0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39bae688: Queued root: 0x7efc32391290 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39bae6a0: Queued root: 0x7efc66e21e50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae6b8: Queued root: 0x7efc328ae790 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae6d0: Queued root: 0x7efc66e22ee0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae6e8: Queued root: 0x7efc66e03380 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae700: Queued root: 0x7efc680be2d0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae718: Queued root: 0x7efc67e084e0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae730: Queued root: 0x7efc66292360 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae748: Queued root: 0x7efc6664c120 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae760: Queued root: 0x7efc66514740 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae778: Queued root: 0x7efc351304f0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae790: Queued root: 0x7efc350aa5f0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae7a8: Queued root: 0x7efc350aa590 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae7c0: Queued root: 0x7efc350aa530 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae7d8: Queued root: 0x7efc67735160 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae7f0: Queued root: 0x7efc67fdb920 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae808: Queued root: 0x7efc6709fb50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae820: Queued root: 0x7efc208f1f90 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae838: Queued root: 0x7efc67115ed0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae850: Queued root: 0x7efc67110940 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae868: Queued root: 0x7efc693a05b0 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae880: Queued root: 0x7efc66a7d670 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae898: Queued root: 0x7efc65496e60 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae8b0: Queued root: 0x7efc3c3a6000 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae8c8: Queued root: 0x7efc208d4a30 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae8e0: Queued root: 0x7efc1f77ee30 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae8f8: Queued root: 0x7efc6773b950 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae910: Queued root: 0x7efc67afe5d0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae928: Queued root: 0x7efc1f5c0310 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae940: Queued root: 0x7efc67affec0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae958: Queued root: 0x7efc1a3d1f90 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae970: Queued root: 0x7efc65440db0 :: 0x7efc64ff3bc0 (bits: 3)
of type Core.SimpleVector
0x7efc39bae988: Queued root: 0x7efc3f5e3a00 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae9a0: Queued root: 0x7efc1a3d1e40 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39bae9b8: Queued root: 0x7efc1fa9a110 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39bae9d0: Queued root: 0x7efc661142c0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39bae9e8: Queued root: 0x7efc66114f40 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baea00: Queued root: 0x7efc1f3adc30 :: 0x7efc64ff3ce0 (bits: 3)
of type Core.MethodTable
0x7efc39baea18: Queued root: 0x7efc1fa72ab0 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baea30: Queued root: 0x7efc32a0dd60 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baea48: Queued root: 0x7efc6027c420 :: 0x7efc65042d50 (bits: 3)
of type Core.TypeMapEntry
0x7efc39baea60: Queued root: 0x7efc1faa8640 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baea78: Queued root: 0x7efc33233490 :: 0x7efc64ff03e0 (bits: 3)
of type Core.TypeName
0x7efc39baea90: Queued root: 0x7efc32393810 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeaa8: Queued root: 0x7efc324617d0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeac0: Queued root: 0x7efc324611d0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baead8: Queued root: 0x7efc324616d0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeaf0: Queued root: 0x7efc32461710 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeb08: Queued root: 0x7efc205d0bf0 :: 0x7efc1f171d50 (bits: 3)
of type Mimi.Model
0x7efc39baeb20: Queued root: 0x7efc1beea7d0 :: 0x7efc1f170a90 (bits: 3)
of type Array{Union{Nothing, Mimi.Dimension{T} where T<:Union{Float64, Int64, AbstractString, Symbol}}, 1}
0x7efc39baeb38: Queued root: 0x7efc1c34c010 :: 0x7efc1f170a90 (bits: 3)
of type Array{Union{Nothing, Mimi.Dimension{T} where T<:Union{Float64, Int64, AbstractString, Symbol}}, 1}
0x7efc39baeb50: Queued root: 0x7efc32851ad0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeb68: Queued root: 0x7efc32851850 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeb80: Queued root: 0x7efc3f323690 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baeb98: Queued root: 0x7efc1f79d330 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baebb0: Queued root: 0x7efc32952d20 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baebc8: Queued root: 0x7efc3242ae90 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baebe0: Queued root: 0x7efc32433850 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baebf8: Queued root: 0x7efc32429c30 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baec10: Queued root: 0x7efc1f7f09d0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baec28: Queued root: 0x7efc1f703310 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baec40: Queued root: 0x7efc33db0710 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baec58: Queued root: 0x7efc1ed7b610 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baec70: Queued root: 0x7efc1f5e7eb0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baec88: Queued root: 0x7efc3e7f29a0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baeca0: Queued root: 0x7efc340d8310 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baecb8: Queued root: 0x7efc626e42b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baecd0: Queued root: 0x7efc3d195350 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baece8: Queued root: 0x7efc340d8490 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baed00: Queued root: 0x7efc340d8250 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baed18: Queued root: 0x7efc34aaa0b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baed30: Queued root: 0x7efc34aa9e10 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baed48: Queued root: 0x7efc66835330 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baed60: Queued root: 0x7efc67314e30 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baed78: Queued root: 0x7efc34aa94b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baed90: Queued root: 0x7efc67134a60 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baeda8: Queued root: 0x7efc340d8850 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baedc0: Queued root: 0x7efc3f323b10 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baedd8: Queued root: 0x7efc3284b650 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baedf0: Queued root: 0x7efc323ade90 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baee08: Queued root: 0x7efc333dbbd0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baee20: Queued root: 0x7efc32848f90 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baee38: Queued root: 0x7efc32828550 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baee50: Queued root: 0x7efc328533d0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baee68: Queued root: 0x7efc3340c750 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baee80: Queued root: 0x7efc333b2e10 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baee98: Queued root: 0x7efc32893e50 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeeb0: Queued root: 0x7efc323aca90 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeec8: Queued root: 0x7efc32893cd0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeee0: Queued root: 0x7efc323abbd0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baeef8: Queued root: 0x7efc333da450 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baef10: Queued root: 0x7efc3291e210 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baef28: Queued root: 0x7efc3d1963d0 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baef40: Queued root: 0x7efc3d196e20 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baef58: Queued root: 0x7efc32848810 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baef70: Queued root: 0x7efc328281d0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baef88: Queued root: 0x7efc3340d250 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baefa0: Queued root: 0x7efc1faa54b0 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baefb8: Queued root: 0x7efc1faa5560 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baefd0: Queued root: 0x7efc1fa9bbe0 :: 0x7efc650604b0 (bits: 3)
of type Method
0x7efc39baefe8: Queued root: 0x7efc67c23b40 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf000: Queued root: 0x7efc67c24560 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf018: Queued root: 0x7efc1f2cb5d0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baf030: Queued root: 0x7efc1f2cb7d0 :: 0x7efc650608f0 (bits: 3)
of type Core.MethodInstance
0x7efc39baf048: Queued root: 0x7efc66676670 :: 0x7efc64ff3ce0 (bits: 3)
of type Core.MethodTable
0x7efc39baf060: Queued root: 0x230b640 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf078: Queued root: 0x7efc1d62e1d0 :: 0x7efc65042d50 (bits: 3)
of type Core.TypeMapEntry
0x7efc39baf090: Queued root: 0x7efc661a2e20 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf0a8: Queued root: 0x7efc6619baa0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf0c0: Queued root: 0x7efc6614be90 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf0d8: Queued root: 0x7efc6615cf10 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf0f0: Queued root: 0x7efc66dfb3b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf108: Queued root: 0x7efc66e029b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf120: Queued root: 0x7efc66e6ea20 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf138: Queued root: 0x7efc65e066a0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf150: Queued root: 0x7efc66dfbf00 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf168: Queued root: 0x7efc661939c0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf180: Queued root: 0x7efc661947a0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf198: Queued root: 0x7efc65e0b1e0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf1b0: Queued root: 0x7efc67195a70 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf1c8: Queued root: 0x1cf7c00 :: 0x7efc64ff3bc0 (bits: 3)
of type Core.SimpleVector
0x7efc39baf1e0: Queued root: 0x7efc3cbcb340 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf1f8: Queued root: 0x7efc667f62f0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf210: Queued root: 0x7efc68133000 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf228: Queued root: 0x7efc689541c0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf240: Queued root: 0x7efc66b01e50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf258: Queued root: 0x7efc66b047e0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf270: Queued root: 0x7efc679d4fe0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf288: Queued root: 0x3889d00 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf2a0: Queued root: 0x7efc67f2ad00 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf2b8: Queued root: 0x7efc687536a0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf2d0: Queued root: 0x7efc6515c950 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf2e8: Queued root: 0x2fb5d40 :: 0x7efc64ff3bc0 (bits: 3)
of type Core.SimpleVector
0x7efc39baf300: Queued root: 0x7efc65075d80 :: 0x7efc64ff3bc0 (bits: 3)
of type Core.SimpleVector
0x7efc39baf318: Queued root: 0x7efc69506d60 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf330: Queued root: 0x7efc67b475a0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf348: Queued root: 0x7efc67b3c110 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf360: Queued root: 0x7efc670066f0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf378: Queued root: 0x7efc67007090 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf390: Queued root: 0x7efc669b5db0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf3a8: Queued root: 0x7efc667146a0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf3c0: Queued root: 0x7efc66967960 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf3d8: Queued root: 0x7efc67bfa610 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf3f0: Queued root: 0x17b0400 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf408: Queued root: 0x7efc68af39b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf420: Queued root: 0x7efc65755810 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf438: Queued root: 0x20aa4c0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf450: Queued root: 0x2460800 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf468: Queued root: 0x7efc66532630 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf480: Queued root: 0x7efc66ac6b20 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf498: Queued root: 0x7efc66a40f50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf4b0: Queued root: 0x7efc66a41650 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf4c8: Queued root: 0x7efc654d7a70 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf4e0: Queued root: 0x7efc3cb0a980 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf4f8: Queued root: 0x7efc3f1a8be0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf510: Queued root: 0x7efc657cc9a0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf528: Queued root: 0x7efc66391b60 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf540: Queued root: 0x7efc691121d0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf558: Queued root: 0x7efc654d5800 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf570: Queued root: 0x7efc66836e50 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf588: Queued root: 0x7efc67b13b10 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf5a0: Queued root: 0x7efc6617b710 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf5b8: Queued root: 0x7efc670dd550 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf5d0: Queued root: 0x2f98bc0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf5e8: Queued root: 0x2ed8180 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf600: Queued root: 0x7efc667b3870 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf618: Queued root: 0x7efc660a0f00 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf630: Queued root: 0x7efc1b3d6b30 :: 0x7efc64ff0330 (bits: 3)
of type DataType
0x7efc39baf648: Queued root: 0x7efc680bef70 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf660: Queued root: 0x7efc68919720 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf678: Queued root: 0x7efc3d2504f0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf690: Queued root: 0x7efc3d312fb0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf6a8: Queued root: 0x7efc68fff8b0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf6c0: Queued root: 0x7efc66699900 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf6d8: Queued root: 0x7efc3300ebd0 :: 0x7efc64ff3bc0 (bits: 3)
of type Core.SimpleVector
0x7efc39baf6f0: Queued root: 0x7efc1f6e7610 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf708: Queued root: 0x7efc67769950 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf720: Queued root: 0x7efc68da3570 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf738: Queued root: 0x7efc1d26cc40 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf750: Queued root: 0x7efc690c3670 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf768: Queued root: 0x7efc67d39800 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf780: Queued root: 0x7efc656383f0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf798: Queued root: 0x7efc33e9b190 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf7b0: Queued root: 0x7efc66a1f210 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf7c8: Queued root: 0x7efc669e5440 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf7e0: Queued root: 0x7efc66acdab0 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf7f8: Queued root: 0x7efc66abb800 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf810: Queued root: 0x7efc66ab7860 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf828: Queued root: 0x7efc66ac3410 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf840: Queued root: 0x7efc61c35540 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf858: Queued root: 0x7efc66abf580 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf870: Queued root: 0x7efc66ab1020 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf888: Queued root: 0x7efc33e9b0d0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf8a0: Queued root: 0x7efc1f3d1930 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf8b8: Queued root: 0x7efc338613f0 :: 0x7efc64ff4290 (bits: 3)
of type Array{Any, 1}
0x7efc39baf8d0: Queued root: 0x7efc67584c80 :: 0x7efc64ff44c0 (bits: 3)
of type Core.TypeMapLevel
0x7efc39baf8e8: Queued root: 0x7efc6949a520 :: 0x7efc64ff4290 (bits: 3)