-
Notifications
You must be signed in to change notification settings - Fork 5
/
1.5.0-DEV-7206b56e94.log
1330 lines (1254 loc) · 51.7 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 Bzip2_jll ──────────────────── v1.0.6+1
Installed SortingAlgorithms ──────────── v0.3.1
Installed Roots ──────────────────────── v0.8.4
Installed LaTeXStrings ───────────────── v1.1.0
Installed Parameters ─────────────────── v0.12.0
Installed ControlSystemIdentification ── v0.1.12
Installed FFTW ───────────────────────── v1.2.0
Installed Distributions ──────────────── v0.22.6
Installed FFMPEG_jll ─────────────────── v4.1.0+2
Installed PDMats ─────────────────────── v0.9.12
Installed LeftChildRightSiblingTrees ─── v0.1.2
Installed TreeViews ──────────────────── v0.3.0
Installed Showoff ────────────────────── v0.3.1
Installed FunctionWrappers ───────────── v1.1.1
Installed PlotUtils ──────────────────── v0.6.4
Installed LineSearches ───────────────── v7.0.1
Installed LoggingExtras ──────────────── v0.4.0
Installed Rmath_jll ──────────────────── v0.2.2+0
Installed FixedPointNumbers ──────────── v0.8.0
Installed Arpack_jll ─────────────────── v3.5.0+2
Installed libfdk_aac_jll ─────────────── v0.1.6+1
Installed TotalLeastSquares ──────────── v1.4.0
Installed AbstractTrees ──────────────── v0.3.2
Installed Adapt ──────────────────────── v1.0.1
Installed QuadGK ─────────────────────── v2.3.1
Installed Distances ──────────────────── v0.8.2
Installed OrdinaryDiffEq ─────────────── v5.31.0
Installed StatsFuns ──────────────────── v0.9.4
Installed StatsBase ──────────────────── v0.32.2
Installed VertexSafeGraphs ───────────── v0.1.1
Installed RecursiveFactorization ─────── v0.1.0
Installed DiffResults ────────────────── v1.0.2
Installed StaticArrays ───────────────── v0.12.1
Installed MonteCarloMeasurements ─────── v0.8.3
Installed DocStringExtensions ────────── v0.8.1
Installed Contour ────────────────────── v0.5.2
Installed ZygoteRules ────────────────── v0.2.0
Installed Zlib_jll ───────────────────── v1.2.11+8
Installed Plots ──────────────────────── v0.27.1
Installed CommonSubexpressions ───────── v0.2.0
Installed ColorTypes ─────────────────── v0.10.0
Installed GeometryTypes ──────────────── v0.7.6
Installed JSON ───────────────────────── v0.21.0
Installed DataStructures ─────────────── v0.17.10
Installed Optim ──────────────────────── v0.20.4
Installed OpenBLAS_jll ───────────────── v0.3.7+7
Installed NaNMath ────────────────────── v0.3.3
Installed LAME_jll ───────────────────── v3.100.0+0
Installed GenericSVD ─────────────────── v0.2.2
Installed libvorbis_jll ──────────────── v1.3.6+2
Installed Measures ───────────────────── v0.3.1
Installed IterTools ──────────────────── v1.3.0
Installed DelayDiffEq ────────────────── v5.23.0
Installed CompilerSupportLibraries_jll ─ v0.3.0+0
Installed x265_jll ───────────────────── v3.0.0+0
Installed Reexport ───────────────────── v0.2.0
Installed RecipesBase ────────────────── v0.7.0
Installed Rmath ──────────────────────── v0.6.1
Installed ProgressMeter ──────────────── v1.2.0
Installed LibVPX_jll ─────────────────── v1.8.1+1
Installed Parsers ────────────────────── v0.3.12
Installed ExponentialUtilities ───────── v1.6.0
Installed SpecialFunctions ───────────── v0.10.0
Installed NLsolve ────────────────────── v4.3.0
Installed DSP ────────────────────────── v0.6.3
Installed ControlSystems ─────────────── v0.5.7
Installed PositiveFactorizations ─────── v0.2.3
Installed OpenSpecFun_jll ────────────── v0.5.3+3
Installed Opus_jll ───────────────────── v1.3.1+0
Installed Ogg_jll ────────────────────── v1.3.3+0
Installed AbstractFFTs ───────────────── v0.5.0
Installed DataAPI ────────────────────── v1.1.0
Installed IterativeSolvers ───────────── v0.8.1
Installed OpenSSL_jll ────────────────── v1.1.1+1
Installed Polynomials ────────────────── v0.6.1
Installed Missings ───────────────────── v0.4.3
Installed FFMPEG ─────────────────────── v0.3.0
Installed ChainRulesCore ─────────────── v0.7.1
Installed GenericLinearAlgebra ───────── v0.2.1
Installed SimpleTraits ───────────────── v0.9.1
Installed FFTW_jll ───────────────────── v3.3.9+4
Installed FriBidi_jll ────────────────── v1.0.5+2
Installed Requires ───────────────────── v1.0.1
Installed x264_jll ───────────────────── v2019.5.25+1
Installed MuladdMacro ────────────────── v0.2.2
Installed Colors ─────────────────────── v0.12.0
Installed ProgressLogging ────────────── v0.1.2
Installed LightGraphs ────────────────── v1.3.1
Installed UnPack ─────────────────────── v0.1.0
Installed PlotThemes ─────────────────── v1.0.1
Installed RecursiveArrayTools ────────── v2.1.0
Installed IteratorInterfaceExtensions ── v1.0.0
Installed IntelOpenMP_jll ────────────── v2018.0.3+0
Installed TerminalLoggers ────────────── v0.1.1
Installed FiniteDiff ─────────────────── v2.2.1
Installed SparseDiffTools ────────────── v1.4.0
Installed MKL_jll ────────────────────── v2019.0.117+2
Installed ArnoldiMethod ──────────────── v0.0.4
Installed MacroTools ─────────────────── v0.5.4
Installed DiffEqBase ─────────────────── v6.24.0
Installed ArrayInterface ─────────────── v2.5.1
Installed ConsoleProgressMonitor ─────── v0.1.2
Installed Arpack ─────────────────────── v0.4.0
Installed FreeType2_jll ──────────────── v2.10.1+1
Installed libass_jll ─────────────────── v0.14.0+0
Installed Inflate ────────────────────── v0.1.1
Installed DiffRules ──────────────────── v1.0.1
Installed Compat ─────────────────────── v3.8.0
Installed OrderedCollections ─────────── v1.1.0
Installed ForwardDiff ────────────────── v0.10.9
Installed TableTraits ────────────────── v1.0.0
Installed GR ─────────────────────────── v0.48.0
Installed FillArrays ─────────────────── v0.8.5
Installed NLSolversBase ──────────────── v7.6.1
#=#=# ##O#- # ######################################################################## 100.0%
#=#=# ##O#- # ## 3.3%######## 11.7%############### 22.1%########################## 37.0%######################################## 56.4%######################################################### 79.4%######################################################################## 100.0%
#=#=# ########################################################### 82.9%######################################################################## 100.0%
#=#=# ############################################### 65.6%######################################################################## 100.0%
#=#=# ######## 12.3%############## 19.9%########################################### 60.0%######################################################################## 100.0%
#=#=# ##################################################### 74.2%######################################################################## 100.0%
#=#=# # 2.6%##### 7.4%######### 13.8%################ 22.2%###################### 31.5%################################# 46.1%################################### 49.8%############################################### 66.4%################################################################ 89.3%######################################################################## 100.0%
#=#=# ##### 7.0%######################################################################## 100.0%
#=#=# ############################################### 65.8%######################################################################## 100.0%
#=#=# ## 3.7%####### 11.0%############## 20.7%######################### 34.8%###################################### 53.7%########################################### 60.8%############################################################# 85.2%######################################################################## 100.0%
#=#=# ### 4.5%################################################ 67.4%######################################################################## 100.0%
#=#=# ########################## 36.6%######################################################################## 100.0%
#=#=# ######################################################################## 100.0%
#=#=# ################################# 46.7%######################################################################## 100.0%
#=#=# ############################ 40.0%######################################################################## 100.0%
#=#=# #### 5.9%############# 19.1%########################## 36.6%########################################## 58.8%############################################################### 88.1%######################################################################## 100.0%
#=#=# ##### 7.3%####################### 32.0%################################################## 69.9%######################################################################## 100.0%
#=#=# ######################################################################## 100.0%
#=#=# ############# 19.4%########################################## 58.9%######################################################################## 100.0%
#=#=# ####################################### 55.2%####################################################################### 99.0%######################################################################## 100.0%
#=#=# ################### 27.2%################################################## 70.2%######################################################################## 100.0%
#=#=# ################## 25.0%######################################################################## 100.0%
Updating `~/.julia/environments/v1.5/Project.toml`
3abffc1c + ControlSystemIdentification v0.1.12
Updating `~/.julia/environments/v1.5/Manifest.toml`
621f4979 + AbstractFFTs v0.5.0
1520ce14 + AbstractTrees v0.3.2
79e6a3ab + Adapt v1.0.1
ec485272 + ArnoldiMethod v0.0.4
7d9fca2a + Arpack v0.4.0
68821587 + Arpack_jll v3.5.0+2
4fba245c + ArrayInterface v2.5.1
6e34b625 + Bzip2_jll v1.0.6+1
d360d2e6 + ChainRulesCore v0.7.1
3da002f7 + ColorTypes v0.10.0
5ae59095 + Colors v0.12.0
bbf7d656 + CommonSubexpressions v0.2.0
34da2185 + Compat v3.8.0
e66e0078 + CompilerSupportLibraries_jll v0.3.0+0
88cd18e8 + ConsoleProgressMonitor v0.1.2
d38c429a + Contour v0.5.2
3abffc1c + ControlSystemIdentification v0.1.12
a6e380b2 + ControlSystems v0.5.7
717857b8 + DSP v0.6.3
9a962f9c + DataAPI v1.1.0
864edb3b + DataStructures v0.17.10
bcd4f6db + DelayDiffEq v5.23.0
2b5f629d + DiffEqBase v6.24.0
163ba53b + DiffResults v1.0.2
b552c78f + DiffRules v1.0.1
b4f34e82 + Distances v0.8.2
31c24e10 + Distributions v0.22.6
ffbed154 + DocStringExtensions v0.8.1
d4d017d3 + ExponentialUtilities v1.6.0
c87230d0 + FFMPEG v0.3.0
b22a6f82 + FFMPEG_jll v4.1.0+2
7a1cc6ca + FFTW v1.2.0
f5851436 + FFTW_jll v3.3.9+4
1a297f60 + FillArrays v0.8.5
6a86dc24 + FiniteDiff v2.2.1
53c48c17 + FixedPointNumbers v0.8.0
f6369f11 + ForwardDiff v0.10.9
d7e528f0 + FreeType2_jll v2.10.1+1
559328eb + FriBidi_jll v1.0.5+2
069b7b12 + FunctionWrappers v1.1.1
28b8d3ca + GR v0.48.0
14197337 + GenericLinearAlgebra v0.2.1
01680d73 + GenericSVD v0.2.2
4d00f742 + GeometryTypes v0.7.6
d25df0c9 + Inflate v0.1.1
1d5cc7b8 + IntelOpenMP_jll v2018.0.3+0
c8e1da08 + IterTools v1.3.0
42fd0dbc + IterativeSolvers v0.8.1
82899510 + IteratorInterfaceExtensions v1.0.0
682c06a0 + JSON v0.21.0
c1c5ebd0 + LAME_jll v3.100.0+0
b964fa9f + LaTeXStrings v1.1.0
1d6d02ad + LeftChildRightSiblingTrees v0.1.2
dd192d2f + LibVPX_jll v1.8.1+1
093fc24a + LightGraphs v1.3.1
d3d80556 + LineSearches v7.0.1
e6f89c97 + LoggingExtras v0.4.0
856f044c + MKL_jll v2019.0.117+2
1914dd2f + MacroTools v0.5.4
442fdcdd + Measures v0.3.1
e1d29d7a + Missings v0.4.3
0987c9cc + MonteCarloMeasurements v0.8.3
46d2c3a1 + MuladdMacro v0.2.2
d41bc354 + NLSolversBase v7.6.1
2774e3e8 + NLsolve v4.3.0
77ba4419 + NaNMath v0.3.3
e7412a2a + Ogg_jll v1.3.3+0
4536629a + OpenBLAS_jll v0.3.7+7
458c3c95 + OpenSSL_jll v1.1.1+1
efe28fd5 + OpenSpecFun_jll v0.5.3+3
429524aa + Optim v0.20.4
91d4177d + Opus_jll v1.3.1+0
bac558e1 + OrderedCollections v1.1.0
1dea7af3 + OrdinaryDiffEq v5.31.0
90014a1f + PDMats v0.9.12
d96e819e + Parameters v0.12.0
69de0a69 + Parsers v0.3.12
ccf2f8ad + PlotThemes v1.0.1
995b91a9 + PlotUtils v0.6.4
91a5bcdd + Plots v0.27.1
f27b6e38 + Polynomials v0.6.1
85a6dd25 + PositiveFactorizations v0.2.3
33c8b6b6 + ProgressLogging v0.1.2
92933f4c + ProgressMeter v1.2.0
1fd47b50 + QuadGK v2.3.1
3cdcf5f2 + RecipesBase v0.7.0
731186ca + RecursiveArrayTools v2.1.0
f2c3362d + RecursiveFactorization v0.1.0
189a3867 + Reexport v0.2.0
ae029012 + Requires v1.0.1
79098fc4 + Rmath v0.6.1
f50d1b31 + Rmath_jll v0.2.2+0
f2b01f46 + Roots v0.8.4
992d4aef + Showoff v0.3.1
699a6c99 + SimpleTraits v0.9.1
a2af1166 + SortingAlgorithms v0.3.1
47a9eef4 + SparseDiffTools v1.4.0
276daf66 + SpecialFunctions v0.10.0
90137ffa + StaticArrays v0.12.1
2913bbd2 + StatsBase v0.32.2
4c63d2b9 + StatsFuns v0.9.4
3783bdb8 + TableTraits v1.0.0
5d786b92 + TerminalLoggers v0.1.1
028f657a + TotalLeastSquares v1.4.0
a2a6695c + TreeViews v0.3.0
3a884ed6 + UnPack v0.1.0
19fa3120 + VertexSafeGraphs v0.1.1
83775a58 + Zlib_jll v1.2.11+8
700de1a5 + ZygoteRules v0.2.0
0ac62f75 + libass_jll v0.14.0+0
f638f0a6 + libfdk_aac_jll v0.1.6+1
f27f6e37 + libvorbis_jll v1.3.6+2
1270edf5 + x264_jll v2019.5.25+1
dfaa095f + x265_jll v3.0.0+0
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
4607b0f0 + SuiteSparse
8dfed614 + Test
cf7118a7 + UUIDs
4ec0a83e + Unicode
Building FFTW ─→ `~/.julia/packages/FFTW/qqcBj/deps/build.log`
Building GR ───→ `~/.julia/packages/GR/yMV3y/deps/build.log`
Building Plots → `~/.julia/packages/Plots/WwFyB/deps/build.log`
Testing ControlSystemIdentification
Status `/tmp/jl_plNRxj/Project.toml`
3abffc1c ControlSystemIdentification v0.1.12
a6e380b2 ControlSystems v0.5.7
717857b8 DSP v0.6.3
7a1cc6ca FFTW v1.2.0
1a297f60 FillArrays v0.8.5
0987c9cc MonteCarloMeasurements v0.8.3
429524aa Optim v0.20.4
d96e819e Parameters v0.12.0
91a5bcdd Plots v0.27.1
3cdcf5f2 RecipesBase v0.7.0
f2b01f46 Roots v0.8.4
028f657a TotalLeastSquares v1.4.0
37e2e46d LinearAlgebra
9a3f8284 Random
10745b16 Statistics
8dfed614 Test
Status `/tmp/jl_plNRxj/Manifest.toml`
621f4979 AbstractFFTs v0.5.0
1520ce14 AbstractTrees v0.3.2
79e6a3ab Adapt v1.0.1
ec485272 ArnoldiMethod v0.0.4
7d9fca2a Arpack v0.4.0
68821587 Arpack_jll v3.5.0+2
4fba245c ArrayInterface v2.5.1
6e34b625 Bzip2_jll v1.0.6+1
d360d2e6 ChainRulesCore v0.7.1
3da002f7 ColorTypes v0.10.0
5ae59095 Colors v0.12.0
bbf7d656 CommonSubexpressions v0.2.0
34da2185 Compat v3.8.0
e66e0078 CompilerSupportLibraries_jll v0.3.0+0
88cd18e8 ConsoleProgressMonitor v0.1.2
d38c429a Contour v0.5.2
3abffc1c ControlSystemIdentification v0.1.12
a6e380b2 ControlSystems v0.5.7
717857b8 DSP v0.6.3
9a962f9c DataAPI v1.1.0
864edb3b DataStructures v0.17.10
bcd4f6db DelayDiffEq v5.23.0
2b5f629d DiffEqBase v6.24.0
163ba53b DiffResults v1.0.2
b552c78f DiffRules v1.0.1
b4f34e82 Distances v0.8.2
31c24e10 Distributions v0.22.6
ffbed154 DocStringExtensions v0.8.1
d4d017d3 ExponentialUtilities v1.6.0
c87230d0 FFMPEG v0.3.0
b22a6f82 FFMPEG_jll v4.1.0+2
7a1cc6ca FFTW v1.2.0
f5851436 FFTW_jll v3.3.9+4
1a297f60 FillArrays v0.8.5
6a86dc24 FiniteDiff v2.2.1
53c48c17 FixedPointNumbers v0.8.0
f6369f11 ForwardDiff v0.10.9
d7e528f0 FreeType2_jll v2.10.1+1
559328eb FriBidi_jll v1.0.5+2
069b7b12 FunctionWrappers v1.1.1
28b8d3ca GR v0.48.0
14197337 GenericLinearAlgebra v0.2.1
01680d73 GenericSVD v0.2.2
4d00f742 GeometryTypes v0.7.6
d25df0c9 Inflate v0.1.1
1d5cc7b8 IntelOpenMP_jll v2018.0.3+0
c8e1da08 IterTools v1.3.0
42fd0dbc IterativeSolvers v0.8.1
82899510 IteratorInterfaceExtensions v1.0.0
682c06a0 JSON v0.21.0
c1c5ebd0 LAME_jll v3.100.0+0
b964fa9f LaTeXStrings v1.1.0
1d6d02ad LeftChildRightSiblingTrees v0.1.2
dd192d2f LibVPX_jll v1.8.1+1
093fc24a LightGraphs v1.3.1
d3d80556 LineSearches v7.0.1
e6f89c97 LoggingExtras v0.4.0
856f044c MKL_jll v2019.0.117+2
1914dd2f MacroTools v0.5.4
442fdcdd Measures v0.3.1
e1d29d7a Missings v0.4.3
0987c9cc MonteCarloMeasurements v0.8.3
46d2c3a1 MuladdMacro v0.2.2
d41bc354 NLSolversBase v7.6.1
2774e3e8 NLsolve v4.3.0
77ba4419 NaNMath v0.3.3
e7412a2a Ogg_jll v1.3.3+0
4536629a OpenBLAS_jll v0.3.7+7
458c3c95 OpenSSL_jll v1.1.1+1
efe28fd5 OpenSpecFun_jll v0.5.3+3
429524aa Optim v0.20.4
91d4177d Opus_jll v1.3.1+0
bac558e1 OrderedCollections v1.1.0
1dea7af3 OrdinaryDiffEq v5.31.0
90014a1f PDMats v0.9.12
d96e819e Parameters v0.12.0
69de0a69 Parsers v0.3.12
ccf2f8ad PlotThemes v1.0.1
995b91a9 PlotUtils v0.6.4
91a5bcdd Plots v0.27.1
f27b6e38 Polynomials v0.6.1
85a6dd25 PositiveFactorizations v0.2.3
33c8b6b6 ProgressLogging v0.1.2
92933f4c ProgressMeter v1.2.0
1fd47b50 QuadGK v2.3.1
3cdcf5f2 RecipesBase v0.7.0
731186ca RecursiveArrayTools v2.1.0
f2c3362d RecursiveFactorization v0.1.0
189a3867 Reexport v0.2.0
ae029012 Requires v1.0.1
79098fc4 Rmath v0.6.1
f50d1b31 Rmath_jll v0.2.2+0
f2b01f46 Roots v0.8.4
992d4aef Showoff v0.3.1
699a6c99 SimpleTraits v0.9.1
a2af1166 SortingAlgorithms v0.3.1
47a9eef4 SparseDiffTools v1.4.0
276daf66 SpecialFunctions v0.10.0
90137ffa StaticArrays v0.12.1
2913bbd2 StatsBase v0.32.2
4c63d2b9 StatsFuns v0.9.4
3783bdb8 TableTraits v1.0.0
5d786b92 TerminalLoggers v0.1.1
028f657a TotalLeastSquares v1.4.0
a2a6695c TreeViews v0.3.0
3a884ed6 UnPack v0.1.0
19fa3120 VertexSafeGraphs v0.1.1
83775a58 Zlib_jll v1.2.11+8
700de1a5 ZygoteRules v0.2.0
0ac62f75 libass_jll v0.14.0+0
f638f0a6 libfdk_aac_jll v0.1.6+1
f27f6e37 libvorbis_jll v1.3.6+2
1270edf5 x264_jll v2019.5.25+1
dfaa095f x265_jll v3.0.0+0
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
4607b0f0 SuiteSparse
8dfed614 Test
cf7118a7 UUIDs
4ec0a83e Unicode
WARNING: Method definition lmul!(LinearAlgebra.Givens{T} where T, Nothing) in module GenericSVD at /home/pkgeval/.julia/packages/GenericSVD/w8oZE/src/utils.jl:28 overwritten in module GenericLinearAlgebra at /home/pkgeval/.julia/packages/GenericLinearAlgebra/l4g5a/src/svd.jl:5.
** incremental compilation may be fatally broken for this module **
WARNING: Method definition reflectorApply!(Union{DenseArray{T, 2}, Base.ReinterpretArray{T, 2, S, A} where S where A<:Union{Base.SubArray{T, N, A, I, true} where I<:Union{Tuple{Vararg{Real, N} where N}, Tuple{Base.AbstractUnitRange{T} where T, Vararg{Any, N} where N}} where A<:(DenseArray{T, N} where N where T) where N where T, DenseArray{T, N} where N where T}, Base.ReshapedArray{T, 2, A, MI} where MI<:Tuple{Vararg{Base.MultiplicativeInverses.SignedMultiplicativeInverse{Int64}, N} where N} where A<:Union{Base.ReinterpretArray{T, N, S, A} where S where A<:Union{Base.SubArray{T, N, A, I, true} where I<:Union{Tuple{Vararg{Real, N} where N}, Tuple{Base.AbstractUnitRange{T} where T, Vararg{Any, N} where N}} where A<:(DenseArray{T, N} where N where T) where N where T, DenseArray{T, N} where N where T} where N where T, Base.SubArray{T, N, A, I, true} where I<:Union{Tuple{Vararg{Real, N} where N}, Tuple{Base.AbstractUnitRange{T} where T, Vararg{Any, N} where N}} where A<:(DenseArray{T, N} where N where T) where N where T, DenseArray{T, N} where N where T}, Base.SubArray{T, 2, A, I, L} where L where I<:Tuple{Vararg{Union{Int64, Base.AbstractRange{Int64}, Base.AbstractCartesianIndex{N} where N}, N} where N} where A<:Union{Base.ReinterpretArray{T, N, S, A} where S where A<:Union{Base.SubArray{T, N, A, I, true} where I<:Union{Tuple{Vararg{Real, N} where N}, Tuple{Base.AbstractUnitRange{T} where T, Vararg{Any, N} where N}} where A<:(DenseArray{T, N} where N where T) where N where T, DenseArray{T, N} where N where T} where N where T, Base.ReshapedArray{T, N, A, MI} where MI<:Tuple{Vararg{Base.MultiplicativeInverses.SignedMultiplicativeInverse{Int64}, N} where N} where A<:Union{Base.ReinterpretArray{T, N, S, A} where S where A<:Union{Base.SubArray{T, N, A, I, true} where I<:Union{Tuple{Vararg{Real, N} where N}, Tuple{Base.AbstractUnitRange{T} where T, Vararg{Any, N} where N}} where A<:(DenseArray{T, N} where N where T) where N where T, DenseArray{T, N} where N where T} where N where T, Base.SubArray{T, N, A, I, true} where I<:Union{Tuple{Vararg{Real, N} where N}, Tuple{Base.AbstractUnitRange{T} where T, Vararg{Any, N} where N}} where A<:(DenseArray{T, N} where N where T) where N where T, DenseArray{T, N} where N where T} where N where T, DenseArray{T, N} where N where T}} where T, AbstractArray{T, 1} where T, Number) in module GenericSVD at /home/pkgeval/.julia/packages/GenericSVD/w8oZE/src/utils.jl:5 overwritten in module GenericLinearAlgebra at /home/pkgeval/.julia/packages/GenericLinearAlgebra/l4g5a/src/qr.jl:18.
** incremental compilation may be fatally broken for this module **
WARNING: Method definition rmul!(Nothing, LinearAlgebra.Givens{T} where T) in module GenericSVD at /home/pkgeval/.julia/packages/GenericSVD/w8oZE/src/utils.jl:34 overwritten in module GenericLinearAlgebra at /home/pkgeval/.julia/packages/GenericLinearAlgebra/l4g5a/src/svd.jl:6.
** incremental compilation may be fatally broken for this module **
[ Info: Testing n4sid
* Status: success
* Candidate solution
Minimizer: [1.83e-01, -5.48e-02, 6.04e-02, ...]
Minimum: 1.799084e-20
* Found with
Algorithm: BFGS
Initial Point: [4.35e-05, -5.12e-05, -1.32e-06, ...]
* Convergence measures
|x - x'| = 4.06e-07 ≰ 0.0e+00
|x - x'|/|x'| = 1.13e-07 ≰ 0.0e+00
|f(x) - f(x')| = 4.34e-16 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 2.41e+04 ≰ 0.0e+00
|g(x)| = 2.06e-10 ≤ 1.0e-08
* Work counters
Seconds run: 1 (vs limit Inf)
Iterations: 30
f(x) calls: 99
∇f(x) calls: 99
* Status: success
* Candidate solution
Minimizer: [1.85e-01, -5.75e-02, 6.05e-02, ...]
Minimum: 4.259255e-03
* Found with
Algorithm: BFGS
Initial Point: [-1.53e-04, 2.08e-04, 5.17e-05, ...]
* Convergence measures
|x - x'| = 3.57e-07 ≰ 0.0e+00
|x - x'|/|x'| = 9.96e-08 ≰ 0.0e+00
|f(x) - f(x')| = 3.17e-16 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 7.43e-14 ≰ 0.0e+00
|g(x)| = 2.54e-09 ≤ 1.0e-08
* Work counters
Seconds run: 1 (vs limit Inf)
Iterations: 45
f(x) calls: 154
∇f(x) calls: 154
* Status: success
* Candidate solution
Minimizer: [1.83e-01, -5.48e-02, 6.04e-02, ...]
Minimum: 3.983609e-22
* Found with
Algorithm: BFGS
Initial Point: [-2.47e-04, -1.18e-04, 4.31e-05, ...]
* Convergence measures
|x - x'| = 1.23e-07 ≰ 0.0e+00
|x - x'|/|x'| = 3.44e-08 ≰ 0.0e+00
|f(x) - f(x')| = 4.10e-17 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 1.03e+05 ≰ 0.0e+00
|g(x)| = 9.35e-11 ≤ 1.0e-08
* Work counters
Seconds run: 0 (vs limit Inf)
Iterations: 28
f(x) calls: 93
∇f(x) calls: 93
0.326622 seconds (931.86 k allocations: 213.034 MiB, 11.62% gc time)
* Status: failure (reached maximum number of iterations) (line search failed)
* Candidate solution
Minimizer: [-1.12e+00, -4.14e-01, 4.91e-01, ...]
Minimum: 1.499733e-02
* Found with
Algorithm: BFGS
Initial Point: [-1.82e-05, 8.32e-05, 1.38e-04, ...]
* Convergence measures
|x - x'| = 5.41e-07 ≰ 0.0e+00
|x - x'|/|x'| = 1.34e-07 ≰ 0.0e+00
|f(x) - f(x')| = 4.96e-08 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 3.31e-06 ≰ 0.0e+00
|g(x)| = 7.38e+03 ≰ 1.0e-08
* Work counters
Seconds run: 39 (vs limit Inf)
Iterations: 400
f(x) calls: 1899
∇f(x) calls: 1899
┌ Warning: Estimated system does not have a stable prediction filter (A-KC)
└ @ ControlSystemIdentification ~/.julia/packages/ControlSystemIdentification/q29qa/src/pem.jl:91
[ Info: Stabilizing predictor
* Status: success
* Candidate solution
Minimizer: [1.85e-01, -5.44e-02, 6.04e-02, ...]
Minimum: 4.283095e-05
* Found with
Algorithm: BFGS
Initial Point: [-1.09e-04, -3.15e-06, -7.15e-05, ...]
* Convergence measures
|x - x'| = 2.68e-07 ≰ 0.0e+00
|x - x'|/|x'| = 7.47e-08 ≰ 0.0e+00
|f(x) - f(x')| = 2.09e-17 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 4.88e-13 ≰ 0.0e+00
|g(x)| = 5.25e-09 ≤ 1.0e-08
* Work counters
Seconds run: 1 (vs limit Inf)
Iterations: 56
f(x) calls: 181
∇f(x) calls: 181
[ Info: Focusing on simulation
* Status: success
* Candidate solution
Minimizer: [1.85e-01, -5.44e-02, 6.04e-02, ...]
Minimum: 4.558694e-05
* Found with
Algorithm: Newton's Method (Trust Region)
Initial Point: [1.85e-01, -5.44e-02, 6.04e-02, ...]
* Convergence measures
|x - x'| = 2.34e-05 ≰ 0.0e+00
|x - x'|/|x'| = 6.52e-06 ≰ 0.0e+00
|f(x) - f(x')| = 8.08e-13 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 1.77e-08 ≰ 0.0e+00
|g(x)| = 2.61e-09 ≤ 1.0e-08
* Work counters
Seconds run: 0 (vs limit Inf)
Iterations: 16
f(x) calls: 17
∇f(x) calls: 17
∇²f(x) calls: 6
17.283176 seconds (13.80 M allocations: 1003.763 MiB, 3.64% gc time)
* Status: failure (reached maximum number of iterations) (line search failed)
* Candidate solution
Minimizer: [1.83e-01, -5.48e-02, 6.04e-02, ...]
Minimum: 3.803001e-04
* Found with
Algorithm: BFGS
Initial Point: [-2.45e-05, 4.44e-05, 1.45e-04, ...]
* Convergence measures
|x - x'| = 1.05e-05 ≰ 0.0e+00
|x - x'|/|x'| = 2.92e-06 ≰ 0.0e+00
|f(x) - f(x')| = 1.89e-08 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 4.98e-05 ≰ 0.0e+00
|g(x)| = 1.02e+00 ≰ 1.0e-08
* Work counters
Seconds run: 2 (vs limit Inf)
Iterations: 100
f(x) calls: 292
∇f(x) calls: 292
[ Info: Testing arma
mean(abs2, uh - u) / mean(abs2, u) = 0.0009552209768216922
* Status: failure (reached maximum number of iterations) (line search failed)
* Candidate solution
Minimizer: [9.60e-01, 3.66e-02, 2.02e+00, ...]
Minimum: 5.611779e-01
* Found with
Algorithm: BFGS
Initial Point: [9.57e-01, 1.74e-02, 1.96e+00, ...]
* Convergence measures
|x - x'| = 3.19e-03 ≰ 0.0e+00
|x - x'|/|x'| = 1.58e-03 ≰ 0.0e+00
|f(x) - f(x')| = 1.79e-04 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 3.19e-04 ≰ 0.0e+00
|g(x)| = 4.73e+02 ≰ 1.0e-08
* Work counters
Seconds run: 0 (vs limit Inf)
Iterations: 50
f(x) calls: 317
∇f(x) calls: 317
┌ Warning: Estimated system does not have a stable prediction filter (A-KC)
└ @ ControlSystemIdentification ~/.julia/packages/ControlSystemIdentification/q29qa/src/pem.jl:91
[ Info: Stabilizing predictor
* Status: failure (reached maximum number of iterations) (line search failed)
* Candidate solution
Minimizer: [1.15e+00, 1.61e-01, -4.54e-01, ...]
Minimum: 1.693902e-02
* Found with
Algorithm: BFGS
Initial Point: [1.18e+00, 1.28e-01, -4.50e-01, ...]
* Convergence measures
|x - x'| = 4.45e-04 ≰ 0.0e+00
|x - x'|/|x'| = 1.58e-04 ≰ 0.0e+00
|f(x) - f(x')| = 3.19e-06 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 1.88e-04 ≰ 0.0e+00
|g(x)| = 4.55e+02 ≰ 1.0e-08
* Work counters
Seconds run: 0 (vs limit Inf)
Iterations: 50
f(x) calls: 342
∇f(x) calls: 342
┌ Warning: Estimated system does not have a stable prediction filter (A-KC)
└ @ ControlSystemIdentification ~/.julia/packages/ControlSystemIdentification/q29qa/src/pem.jl:91
[ Info: Stabilizing predictor
* Status: failure (reached maximum number of iterations) (line search failed)
* Candidate solution
Minimizer: [8.82e-01, 2.71e-01, -8.08e-02, ...]
Minimum: 1.395247e-02
* Found with
Algorithm: BFGS
Initial Point: [8.15e-01, 3.55e-01, -1.41e-01, ...]
* Convergence measures
|x - x'| = 6.14e-03 ≰ 0.0e+00
|x - x'|/|x'| = 2.19e-03 ≰ 0.0e+00
|f(x) - f(x')| = 1.50e-05 ≰ 0.0e+00
|f(x) - f(x')|/|f(x')| = 1.07e-03 ≰ 0.0e+00
|g(x)| = 4.90e+02 ≰ 1.0e-08
* Work counters
Seconds run: 1 (vs limit Inf)
Iterations: 50
f(x) calls: 337
∇f(x) calls: 337
┌ Warning: Estimated system does not have a stable prediction filter (A-KC)
└ @ ControlSystemIdentification ~/.julia/packages/ControlSystemIdentification/q29qa/src/pem.jl:91
[ Info: Stabilizing predictor
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-pkgeval'
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found
dvipng: PNG conversion failed
sh: 1: dvipng: not found