-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcouenne.log
9879 lines (9879 loc) · 487 KB
/
couenne.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
Couenne 0.5 -- an Open-Source solver for Mixed Integer Nonlinear Optimization
Mailing list: [email protected]
Instructions: http://www.coin-or.org/Couenne
couenne:
ANALYSIS TEST: NLP0012I
Num Status Obj It time Location
NLP0014I 1 OPT 0.001957082 36 0.010856
Coin0506I Presolve 23 (-8) rows, 10 (-21) columns and 54 (-28) elements
Clp0006I 0 Obj -9.99e+12 Primal inf 7.3274993 (7)
Clp0006I 4 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12
Clp0006I 0 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0032I Optimal objective -9.99e+12 - 4 iterations time 0.002, Presolve 0.00
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 2 UNBOUNDED -4.5563351e+22 50 0.007559
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 3 UNBOUNDED -4.5563351e+22 50 0.012519
Clp0006I 0 Obj -9.99e+12 Primal inf 0.67849074 (2)
Clp0006I 2 Obj -9.99e+12 Primal inf 0.00021625181 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.16653609 (3)
Clp0006I 2 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.04017722 (2)
Clp0006I 1 Obj -9.99e+12 Primal inf 0.0046518632 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.013519727 (2)
Clp0000I Optimal - objective value -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 4 INFEAS 0.90249999 21 0.009664
Cbc0031I 4 added rows had average density of 2
Cbc0013I At root node, 4 cuts changed objective from -9.99e+12 to -9.99e+12 in 4 passes
Cbc0014I Cut generator 0 (Couenne convexifier cuts) - 8 row cuts average 2.0 elements, 8 column cuts (12 active)
Cbc0010I After 0 nodes, 0 on tree, 1e+50 best solution, best possible -9.99e+12 (0.03 seconds)
Clp0006I 0 Obj -9.99e+12 Primal inf 411.92781 (1)
Clp0006I 16 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 5 UNBOUNDED -4.5563471e+22 53 0.0156
Clp0006I 0 Obj -9.99e+12 Primal inf 17.668979 (3)
Clp0006I 2 Obj -9.99e+12 Primal inf 0.00020561158 (1)
Clp0006I 2 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.0599468 (2)
Clp0006I 1 Obj -9.99e+12 Primal inf 0.00020561158 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 6 INFEAS 0.90249999 27 0.011148
Clp0006I 0 Obj -9.99e+12 Primal inf 9.1115137e+11 (1)
Clp0006I 9 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 7 INFEAS 0.90249999 21 0.005837
Clp0006I 0 Obj -9.99e+12 Primal inf 0.60595743 (1)
Clp0006I 1 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.17734721 (1)
Clp0006I 1 Obj -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 8 UNBOUNDED -8.6535325e+22 49 0.016519
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 9 UNBOUNDED -1.2150243e+23 43 0.005344
Clp0006I 0 Obj -9402.0314 Primal inf 713.30416 (8)
Clp0006I 20 Obj -5303.9837
Clp0000I Optimal - objective value -5303.9837
Clp0000I Optimal - objective value -5303.9837
Clp0006I 0 Obj -5303.9837 Primal inf 31.986669 (4)
Clp0006I 2 Obj -5130.3279
Clp0000I Optimal - objective value -5130.3279
Clp0000I Optimal - objective value -5130.3279
Clp0006I 0 Obj -5130.3279 Primal inf 0.12625672 (1)
Clp0006I 1 Obj -5130.3279
Clp0000I Optimal - objective value -5130.3279
Clp0006I 0 Obj -5130.3279 Primal inf 0.00067579316 (1)
Clp0006I 1 Obj -5130.3279
Clp0000I Optimal - objective value -5130.3279
Clp0000I Optimal - objective value -5130.3279
NLP0014I 10 OPT 503.35829 16 0.000824
Clp0006I 0 Obj -9.99e+12 Primal inf 9.1115137e+11 (1)
Clp0006I 9 Obj -9.99e+12 Primal inf 0.0064024155 (1)
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 11 INFEAS 0.90249999 23 0.009522
Clp0006I 0 Obj -9.99e+12 Primal inf 4.2718743e+12 (6)
Clp0006I 3 Obj -9.99e+12 Primal inf 0.0024943267 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.0024943267 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.27916849 (2)
Clp0006I 1 Obj -9.99e+12 Primal inf 0.00086949785 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 0.00086949785 (1)
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 12 INFEAS 0.90249999 50 0.025519
Clp0006I 0 Obj -9.99e+12 Primal inf 0.00086949785 (1)
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 13 INFEAS 0.90249999 23 0.006013
Clp0006I 0 Obj -9.99e+12 Primal inf 0.21496481 (2)
Clp0006I 2 Obj -9.99e+12 Primal inf 2.992593e-05 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 2.992593e-05 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -9.99e+12 Primal inf 2.992593e-05 (1)
Clp0000I Optimal - objective value -9.99e+12
NLP0014I 14 INFEAS 0.90249999 43 0.015598
Clp0006I 0 Obj -3951.5418 Primal inf 585.73297 (11)
Clp0006I 9 Obj 15.625561 Primal inf 1.6775507 (6)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0006I 12 Obj 155.50423 Primal inf 14.182786 (1)
Clp0001I Primal infeasible - objective value 155.50423
Clp0006I 0 Obj -9.99e+12 Primal inf 2.992593e-05 (1)
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -6105.7072 Primal inf 766.72234 (2)
Clp0006I 10 Obj -1977.2584
Clp0000I Optimal - objective value -1977.2584
NLP0014I 15 OPT 0.0019570779 41 0.007211
Clp0000I Optimal - objective value -9.99e+12
Clp0006I 0 Obj -28718740 Primal inf 5802.271 (7)
Clp0006I 15 Obj -28712534
Clp0000I Optimal - objective value -28712534
Clp0000I Optimal - objective value -28712534
Clp0006I 0 Obj -28712534 Primal inf 0.00020561158 (1)
Clp0006I 1 Obj -28712534
Clp0000I Optimal - objective value -28712534
Clp0000I Optimal - objective value -28712534
NLP0014I 16 INFEAS 0.90249999 13 0.006181
Clp0006I 0 Obj -5285.6592 Primal inf 382.74388 (1)
Clp0006I 6 Obj -1092.4175
Clp0000I Optimal - objective value -1092.4175
NLP0014I 17 OPT 0.001937679 15 0.003723
Clp0006I 0 Obj -829.57885 Primal inf 25.387266 (6)
Clp0006I 5 Obj -762.72685
Clp0000I Optimal - objective value -762.72685
Clp0000I Optimal - objective value -762.72685
Clp0006I 0 Obj -696.93073 Primal inf 17.396746 (3)
Clp0006I 6 Obj -385.59719
Clp0000I Optimal - objective value -385.59719
Clp0000I Optimal - objective value -385.59719
Clp0006I 0 Obj -385.59719 Primal inf 1.5635208 (4)
Clp0006I 4 Obj -347.19229
Clp0000I Optimal - objective value -347.19229
Clp0000I Optimal - objective value -347.19229
Clp0006I 0 Obj -347.19229 Primal inf 0.0016347078 (4)
Clp0006I 4 Obj -346.94524
Clp0000I Optimal - objective value -346.94524
Clp0000I Optimal - objective value -346.94524
Clp0000I Optimal - objective value -346.94524
NLP0014I 18 OPT 24.503903 14 0.002871
Clp0000I Optimal - objective value -28712534
Clp0006I 0 Obj -4739.1487 Primal inf 154.87904 (10)
Clp0006I 13 Obj -1973.5483
Clp0000I Optimal - objective value -1973.5483
Clp0000I Optimal - objective value -1973.5483
Clp0000I Optimal - objective value -1973.5483
NLP0014I 19 OPT 0.0019570815 41 0.01058
Clp0000I Optimal - objective value -28704105
Clp0006I 0 Obj -1946.5855 Primal inf 16.237887 (4)
Clp0006I 3 Obj -1787.2738
Clp0000I Optimal - objective value -1787.2738
Clp0006I 0 Obj -1787.2738 Primal inf 54.813685 (7)
Clp0006I 11 Obj -797.51039
Clp0000I Optimal - objective value -797.51039
Clp0000I Optimal - objective value -797.51039
Clp0000I Optimal - objective value -797.51039
Clp0006I 0 Obj -1694.5014 Primal inf 22.64467 (1)
Clp0006I 2 Obj -1626.3094
Clp0000I Optimal - objective value -1626.3094
Clp0006I 0 Obj -1626.3094 Primal inf 43.979359 (5)
Clp0006I 8 Obj -840.68721
Clp0000I Optimal - objective value -840.68721
Clp0000I Optimal - objective value -840.68721
Clp0006I 0 Obj -840.68721 Primal inf 0.00027267277 (1)
Clp0006I 1 Obj -840.67515
Clp0000I Optimal - objective value -840.67515
Clp0000I Optimal - objective value -840.67515
Clp0000I Optimal - objective value -840.67515
Clp0006I 0 Obj -840.67515 Primal inf 35.004323 (8)
Clp0006I 6 Obj -392.25084
Clp0000I Optimal - objective value -392.25084
Clp0006I 0 Obj -212.58657 Primal inf 13.382157 (6)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0006I 7 Obj 4.2092793 Primal inf 0.26695162 (1)
Clp0001I Primal infeasible - objective value 4.2092793
Clp0006I 0 Obj -840.67515 Primal inf 25.301131 (1)
Clp0006I 1 Obj -800.31963
Clp0000I Optimal - objective value -800.31963
Clp0006I 0 Obj -800.31963 Primal inf 9.7343731 (3)
Clp0006I 3 Obj -378.75571
Clp0000I Optimal - objective value -378.75571
Clp0000I Optimal - objective value -378.75571
Clp0000I Optimal - objective value -378.75571
Clp0006I 0 Obj -378.75571 Primal inf 0.18012215 (1)
Clp0006I 1 Obj -376.93312
Clp0000I Optimal - objective value -376.93312
Clp0006I 0 Obj -376.93312 Primal inf 5.131899 (5)
Clp0006I 9 Obj -257.48372
Clp0000I Optimal - objective value -257.48372
Clp0000I Optimal - objective value -257.48372
Clp0006I 0 Obj -257.48372 Primal inf 0.10637551 (2)
Clp0006I 1 Obj -252.2265
Clp0000I Optimal - objective value -252.2265
Clp0000I Optimal - objective value -252.2265
Clp0006I 0 Obj -252.2265 Primal inf 0.0010908388 (2)
Clp0006I 2 Obj -252.18817
Clp0000I Optimal - objective value -252.18817
Clp0000I Optimal - objective value -252.18817
Clp0000I Optimal - objective value -252.18817
NLP0014I 20 OPT 0.001937679 11 0.002956
Clp0000I Optimal - objective value -378.75571
Clp0006I 0 Obj -378.75571 Primal inf 15.039269 (7)
Clp0006I 7 Obj -197.90723
Clp0000I Optimal - objective value -197.90723
Clp0000I Optimal - objective value -197.90723
Clp0000I Optimal - objective value -197.90723
Clp0000I Optimal - objective value -252.18817
Clp0006I 0 Obj -252.18817 Primal inf 15.549577 (6)
Clp0006I 6 Obj -180.51573
Clp0000I Optimal - objective value -180.51573
Clp0000I Optimal - objective value -180.51573
Clp0006I 0 Obj -180.51573 Primal inf 0.32177168 (2)
Clp0006I 2 Obj -180.51573
Clp0000I Optimal - objective value -180.51573
Clp0000I Optimal - objective value -180.51573
Clp0006I 0 Obj -180.51573 Primal inf 0.0017429826 (1)
Clp0006I 1 Obj -180.51573
Clp0000I Optimal - objective value -180.51573
Clp0000I Optimal - objective value -180.51573
Clp0006I 0 Obj -252.18817 Primal inf 4.3065238 (1)
Clp0006I 1 Obj -249.08612
Clp0000I Optimal - objective value -249.08612
Clp0006I 0 Obj -249.08612 Primal inf 4.8152479 (5)
Clp0006I 5 Obj -106.55819
Clp0000I Optimal - objective value -106.55819
Clp0000I Optimal - objective value -106.55819
Clp0006I 0 Obj -106.55819 Primal inf 0.38304921 (3)
Clp0006I 2 Obj -98.983649
Clp0000I Optimal - objective value -98.983649
Clp0000I Optimal - objective value -98.983649
Clp0006I 0 Obj -98.983649 Primal inf 0.084238684 (2)
Clp0006I 1 Obj -95.669407
Clp0000I Optimal - objective value -95.669407
Clp0000I Optimal - objective value -95.669407
Clp0006I 0 Obj -95.669407 Primal inf 0.019906772 (2)
Clp0006I 2 Obj -94.54005
Clp0000I Optimal - objective value -94.54005
Clp0000I Optimal - objective value -94.54005
Clp0006I 0 Obj -94.54005 Primal inf 0.0053439139 (2)
Clp0006I 2 Obj -94.430651
Clp0000I Optimal - objective value -94.430651
Clp0000I Optimal - objective value -94.430651
Clp0006I 0 Obj -94.430651 Primal inf 0.0012879253 (2)
Clp0006I 2 Obj -94.376768
Clp0000I Optimal - objective value -94.376768
Clp0000I Optimal - objective value -94.376768
Clp0006I 0 Obj -94.376768 Primal inf 0.00031322708 (2)
Clp0006I 2 Obj -94.358149
Clp0000I Optimal - objective value -94.358149
Clp0000I Optimal - objective value -94.358149
Clp0006I 0 Obj -94.358149 Primal inf 7.7649133e-05 (2)
Clp0006I 1 Obj -94.356548
Clp0000I Optimal - objective value -94.356548
Clp0000I Optimal - objective value -94.356548
Clp0006I 0 Obj -94.356548 Primal inf 1.9261221e-05 (2)
Clp0006I 1 Obj -94.355748
Clp0000I Optimal - objective value -94.355748
Clp0000I Optimal - objective value -94.355748
Clp0006I 0 Obj -180.51573 Primal inf 0.56321165 (1)
Clp0006I 1 Obj -179.96406
Clp0000I Optimal - objective value -179.96406
Clp0006I 0 Obj -179.96406 Primal inf 14.377817 (7)
Clp0006I 8 Obj -87.620889
Clp0000I Optimal - objective value -87.620889
Clp0000I Optimal - objective value -87.620889
Clp0006I 0 Obj -87.575835 Primal inf 1.2950101 (4)
Clp0006I 3 Obj -87.017206
Clp0000I Optimal - objective value -87.017206
Clp0000I Optimal - objective value -87.017206
Clp0006I 0 Obj -87.007817 Primal inf 1.8081631 (4)
Clp0006I 4 Obj -85.087167
Clp0000I Optimal - objective value -85.087167
Clp0000I Optimal - objective value -85.087167
Clp0006I 0 Obj -85.087167 Primal inf 0.00055299961 (4)
Clp0006I 4 Obj -85.067306
Clp0000I Optimal - objective value -85.067306
Clp0000I Optimal - objective value -85.067306
Clp0006I 0 Obj -85.067306 Primal inf 6.7180365e-05 (4)
Clp0006I 4 Obj -85.06488
Clp0000I Optimal - objective value -85.06488
Clp0000I Optimal - objective value -85.06488
Clp0006I 0 Obj -85.06488 Primal inf 5.3411749e-06 (2)
Clp0006I 2 Obj -85.064578
Clp0000I Optimal - objective value -85.064578
Clp0000I Optimal - objective value -85.064578
Clp0000I Optimal - objective value -180.51573
Clp0006I 0 Obj -180.51573 Primal inf 6.0705589 (6)
Clp0006I 5 Obj -84.14826
Clp0000I Optimal - objective value -84.14826
Clp0000I Optimal - objective value -84.14826
Clp0006I 0 Obj -84.14826 Primal inf 0.23495173 (7)
Clp0006I 7 Obj -75.545964
Clp0000I Optimal - objective value -75.545964
Clp0000I Optimal - objective value -75.545964
Clp0006I 0 Obj -75.545964 Primal inf 0.60760883 (2)
Clp0006I 1 Obj -75.545964
Clp0000I Optimal - objective value -75.545964
Clp0000I Optimal - objective value -75.545964
Clp0006I 0 Obj -75.545964 Primal inf 1.0946061 (1)
Clp0006I 1 Obj -73.384779
Clp0000I Optimal - objective value -73.384779
Clp0000I Optimal - objective value -73.384779
Clp0006I 0 Obj -85.064578 Primal inf 0.71860695 (1)
Clp0006I 1 Obj -84.38106
Clp0000I Optimal - objective value -84.38106
Clp0006I 0 Obj -84.38106 Primal inf 1.4736595 (4)
Clp0006I 5 Obj -11.486331
Clp0000I Optimal - objective value -11.486331
Clp0000I Optimal - objective value -11.486331
Clp0006I 0 Obj -11.486331 Primal inf 5.6561625 (5)
Clp0006I 5 Obj -6.2488158
Clp0000I Optimal - objective value -6.2488158
Clp0000I Optimal - objective value -6.2488158
Clp0006I 0 Obj -6.2488158 Primal inf 0.37108191 (4)
Clp0006I 4 Obj -1.6405629
Clp0000I Optimal - objective value -1.6405629
Clp0000I Optimal - objective value -1.6405629
Clp0006I 0 Obj -1.6405629 Primal inf 0.42218655 (4)
Clp0006I 2 Obj 2.8916806 Primal inf 0.21352699 (3)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0006I 4 Obj 3.5608647 Primal inf 0.25096234 (1)
Clp0001I Primal infeasible - objective value 3.5608647
Clp0000I Optimal - objective value -85.064578
Clp0006I 0 Obj -85.064578 Primal inf 2.3009792 (4)
Clp0006I 6 Obj -63.636516
Clp0000I Optimal - objective value -63.636516
Clp0000I Optimal - objective value -63.636516
Clp0006I 0 Obj -63.636516 Primal inf 2.5108225 (7)
Clp0006I 7 Obj -17.250208
Clp0000I Optimal - objective value -17.250208
Clp0000I Optimal - objective value -17.250208
Clp0006I 0 Obj -17.250208 Primal inf 0.0061520795 (6)
Clp0006I 6 Obj -16.903368
Clp0000I Optimal - objective value -16.903368
Clp0000I Optimal - objective value -16.903368
Clp0006I 0 Obj -16.903368 Primal inf 0.00010109623 (1)
Clp0006I 1 Obj -16.896758
Clp0000I Optimal - objective value -16.896758
Clp0000I Optimal - objective value -16.896758
Clp0000I Optimal - objective value -16.896758
Clp0006I 0 Obj -15.387109 Primal inf 0.039535082 (3)
Clp0006I 1 Obj -15.387109
Clp0000I Optimal - objective value -15.387109
Clp0006I 0 Obj -15.387109 Primal inf 5.8462784 (4)
Clp0006I 4 Obj -13.664799
Clp0000I Optimal - objective value -13.664799
Clp0000I Optimal - objective value -13.664799
Clp0006I 0 Obj -13.664799 Primal inf 0.00021062697 (1)
Clp0006I 1 Obj -13.651021
Clp0000I Optimal - objective value -13.651021
Clp0000I Optimal - objective value -13.651021
Clp0000I Optimal - objective value -13.651021
Clp0000I Optimal - objective value -16.896758
Clp0006I 0 Obj -16.896758 Primal inf 1.0086834 (2)
Clp0006I 2 Obj -16.599351
Clp0000I Optimal - objective value -16.599351
Clp0000I Optimal - objective value -16.599351
Clp0006I 0 Obj -16.599351 Primal inf 0.30154288 (3)
Clp0006I 3 Obj -15.009081
Clp0000I Optimal - objective value -15.009081
Clp0000I Optimal - objective value -15.009081
Clp0006I 0 Obj -15.009081 Primal inf 0.070227217 (3)
Clp0006I 3 Obj -14.243438
Clp0000I Optimal - objective value -14.243438
Clp0000I Optimal - objective value -14.243438
Clp0006I 0 Obj -14.243438 Primal inf 0.017314687 (3)
Clp0006I 4 Obj -13.871505
Clp0000I Optimal - objective value -13.871505
Clp0000I Optimal - objective value -13.871505
Clp0006I 0 Obj -13.871505 Primal inf 0.0051450078 (3)
Clp0006I 2 Obj -13.688383
Clp0000I Optimal - objective value -13.688383
Clp0000I Optimal - objective value -13.688383
Clp0006I 0 Obj -13.688383 Primal inf 0.0012901071 (3)
Clp0006I 3 Obj -13.664577
Clp0000I Optimal - objective value -13.664577
Clp0000I Optimal - objective value -13.664577
Clp0006I 0 Obj -13.664577 Primal inf 0.00031867505 (2)
Clp0006I 2 Obj -13.653373
Clp0000I Optimal - objective value -13.653373
Clp0000I Optimal - objective value -13.653373
Clp0006I 0 Obj -13.653373 Primal inf 8.6556142 (7)
Clp0006I 2 Obj -8.0353477
Clp0000I Optimal - objective value -8.0353477
Clp0006I 0 Obj -7.7472404 Primal inf 0.83330028 (8)
Clp0006I 4 Obj 5.7012306 Primal inf 0.49003244 (5)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0006I 8 Obj 9.2857484 Primal inf 0.68198291 (1)
Clp0001I Primal infeasible - objective value 9.2857484
Clp0000I Optimal - objective value -13.653373
Clp0006I 0 Obj -13.653373 Primal inf 0.57194499 (7)
Clp0006I 6 Obj -1.4562696
Clp0000I Optimal - objective value -1.4562696
Clp0000I Optimal - objective value -1.4562696
Clp0006I 0 Obj -1.4562696 Primal inf 0.050037068 (5)
Clp0006I 1 Obj 0.022585794 Primal inf 0.015294069 (5)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0006I 4 Obj 0.26008617 Primal inf 0.020188844 (1)
Clp0001I Primal infeasible - objective value 0.26008617
Clp0000I Optimal - objective value -5130.3279
Clp0006I 0 Obj -2734.4993 Primal inf 2.4204261 (4)
Clp0006I 3 Obj -2734.4993
Clp0000I Optimal - objective value -2734.4993
NLP0012I
Num Status Obj It time Location
NLP0014I 21 OPT 0.0019376789 40 0.008855
Clp0006I 0 Obj -1052.7151 Primal inf 155.38877 (9)
Clp0006I 6 Obj -829.00352
Clp0000I Optimal - objective value -829.00352
Clp0000I Optimal - objective value -829.00352
Clp0000I Optimal - objective value -797.51039
NLP0014I 22 OPT 13.881152 12 0.000644
Clp0006I 0 Obj -739.04493 Primal inf 19.056589 (6)
Clp0006I 8 Obj -284.96295
Clp0000I Optimal - objective value -284.96295
Clp0000I Optimal - objective value -284.96295
Clp0006I 0 Obj -284.96295 Primal inf 38.055875 (4)
Clp0006I 3 Obj -241.37372
Clp0000I Optimal - objective value -241.37372
Clp0000I Optimal - objective value -241.37372
Clp0006I 0 Obj -241.37372 Primal inf 0.043095635 (2)
Clp0006I 2 Obj -233.53448
Clp0000I Optimal - objective value -233.53448
Clp0000I Optimal - objective value -233.53448
Clp0006I 0 Obj -233.53448 Primal inf 0.0098859926 (2)
Clp0006I 2 Obj -231.74646
Clp0000I Optimal - objective value -231.74646
Clp0000I Optimal - objective value -231.74646
Clp0006I 0 Obj -231.74646 Primal inf 0.0021917716 (2)
Clp0006I 2 Obj -231.35053
Clp0000I Optimal - objective value -231.35053
Clp0000I Optimal - objective value -231.35053
Clp0006I 0 Obj -231.35053 Primal inf 0.00048212243 (2)
Clp0006I 2 Obj -231.26343
Clp0000I Optimal - objective value -231.26343
Clp0000I Optimal - objective value -231.26343
Clp0006I 0 Obj -231.26343 Primal inf 0.00010575267 (2)
Clp0006I 2 Obj -231.2443
Clp0000I Optimal - objective value -231.2443
Clp0000I Optimal - objective value -231.2443
Clp0006I 0 Obj -231.2443 Primal inf 2.3066248e-05 (2)
Clp0006I 2 Obj -231.2401
Clp0000I Optimal - objective value -231.2401
Clp0000I Optimal - objective value -231.2401
Clp0006I 0 Obj -231.2401 Primal inf 4.9086442e-06 (2)
Clp0006I 2 Obj -231.23918
Clp0000I Optimal - objective value -231.23918
Clp0000I Optimal - objective value -231.23918
Clp0006I 0 Obj -231.23918 Primal inf 6.8096826e-07 (1)
Clp0006I 1 Obj -231.23909
Clp0000I Optimal - objective value -231.23909
Clp0000I Optimal - objective value -231.23909
Clp0006I 0 Obj -797.51039 Primal inf 28.216289 (7)
Clp0006I 5 Obj -415.57414
Clp0000I Optimal - objective value -415.57414
NLP0014I 23 OPT 13.881152 12 0.003672
Clp0006I 0 Obj -269.84334 Primal inf 57.342292 (9)
Clp0006I 7 Obj -38.74068
Clp0000I Optimal - objective value -38.74068
Clp0000I Optimal - objective value -38.74068
Clp0006I 0 Obj -38.74068 Primal inf 13.331257 (13)
Clp0006I 2 Obj 11.2173 Primal inf 7.4830853 (8)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0006I 7 Obj 41.620381 Primal inf 2.6170625 (1)
Clp0001I Primal infeasible - objective value 41.620381
Clp0006I 0 Obj -229.14398 Primal inf 0.092308942 (1)
Clp0006I 1 Obj -227.75889
Clp0000I Optimal - objective value -227.75889
Clp0006I 0 Obj -227.75889 Primal inf 6.7877801 (6)
Clp0006I 6 Obj 15.591049 Primal inf 0.85146551 (2)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0006I 7 Obj 19.156264 Primal inf 1.0322067 (1)
Clp0001I Primal infeasible - objective value 19.156264
Clp0006I 0 Obj -231.23909 Primal inf 0.0080571921 (2)
Clp0006I 1 Obj -231.23909
Clp0000I Optimal - objective value -231.23909
Clp0006I 0 Obj -231.23909 Primal inf 5.4673654 (2)
Clp0006I 2 Obj -202.43507
Clp0000I Optimal - objective value -202.43507
Clp0000I Optimal - objective value -202.43507
Clp0006I 0 Obj -202.43507 Primal inf 0.026047609 (2)
Clp0006I 2 Obj -198.72419
Clp0000I Optimal - objective value -198.72419
Clp0000I Optimal - objective value -198.72419
Clp0006I 0 Obj -198.72419 Primal inf 0.0058127466 (2)
Clp0006I 2 Obj -197.89824
Clp0000I Optimal - objective value -197.89824
Clp0000I Optimal - objective value -197.89824
Clp0006I 0 Obj -197.89824 Primal inf 0.0012786502 (2)
Clp0006I 2 Obj -197.71663
Clp0000I Optimal - objective value -197.71663
Clp0000I Optimal - objective value -197.71663
Clp0006I 0 Obj -197.71663 Primal inf 0.00028026339 (2)
Clp0006I 2 Obj -197.67681
Clp0000I Optimal - objective value -197.67681
Clp0000I Optimal - objective value -197.67681
Clp0006I 0 Obj -197.67681 Primal inf 6.1265689e-05 (2)
Clp0006I 2 Obj -197.66808
Clp0000I Optimal - objective value -197.66808
Clp0000I Optimal - objective value -197.66808
Clp0006I 0 Obj -197.66808 Primal inf 1.3268635e-05 (2)
Clp0006I 2 Obj -197.66617
Clp0000I Optimal - objective value -197.66617
Clp0000I Optimal - objective value -197.66617
Clp0006I 0 Obj -197.66617 Primal inf 2.1790736e-06 (1)
Clp0006I 1 Obj -197.66599
Clp0000I Optimal - objective value -197.66599
Clp0000I Optimal - objective value -197.66599
Clp0000I Optimal - objective value -197.66599
Clp0000I Optimal - objective value -197.66599
Clp0006I 0 Obj -197.66599 Primal inf 6.5764036 (9)
Clp0006I 7 Obj -2.6235193
Clp0000I Optimal - objective value -2.6235193
Clp0000I Optimal - objective value -2.6235193
Clp0006I 0 Obj -2.6235193 Primal inf 2.2381162 (8)
Clp0006I 2 Obj 24.756854 Primal inf 40.94537 (12)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0006I 8 Obj 90.984906 Primal inf 7.8814268 (1)
Clp0001I Primal infeasible - objective value 90.984906
Clp0006I 0 Obj -197.66599 Primal inf 15.529236 (7)
Clp0006I 4 Obj -157.53646
Clp0000I Optimal - objective value -157.53646
Clp0006I 0 Obj -147.09076 Primal inf 5.6249522 (7)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0006I 8 Obj 21.123488 Primal inf 1.6547215 (1)
Clp0001I Primal infeasible - objective value 21.123488
Clp0006I 0 Obj -346.94524 Primal inf 0.011127054 (2)
Clp0006I 1 Obj -329.25051
Clp0000I Optimal - objective value -329.25051
NLP0014I 24 OPT 0.0019376789 11 0.003159
Clp0006I 0 Obj -315.77908 Primal inf 14.914355 (8)
Clp0006I 5 Obj -81.209735
Clp0000I Optimal - objective value -81.209735
Clp0000I Optimal - objective value -81.209735
Clp0006I 0 Obj -81.209735 Primal inf 1.1970733 (4)
Clp0006I 4 Obj -33.64617
Clp0000I Optimal - objective value -33.64617
Clp0000I Optimal - objective value -33.64617
Clp0006I 0 Obj -33.64617 Primal inf 0.41393484 (4)
Clp0006I 4 Obj -24.449155
Clp0000I Optimal - objective value -24.449155
Clp0000I Optimal - objective value -24.449155
Clp0006I 0 Obj -24.449155 Primal inf 1.4880494 (5)
Clp0006I 5 Obj -0.32572786
Clp0000I Optimal - objective value -0.32572786
Clp0000I Optimal - objective value -0.32572786
Clp0006I 0 Obj -0.32572786 Primal inf 7.4913597 (10)
Clp0006I 1 Obj 5.3339843 Primal inf 3.6764644 (8)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0006I 5 Obj 14.050363 Primal inf 0.53898329 (1)
Clp0001I Primal infeasible - objective value 14.050363
Clp0006I 0 Obj -193.87838 Primal inf 0.024175631 (1)
Clp0006I 1 Obj -189.61425
Clp0000I Optimal - objective value -189.61425
NLP0014I 25 OPT 0.0019376805 10 0.003231
Clp0006I 0 Obj -189.61425 Primal inf 16.19073 (9)
Clp0006I 5 Obj 49.26889 Primal inf 4.27809 (2)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0006I 6 Obj 51.637188 Primal inf 4.4676981 (1)
Clp0001I Primal infeasible - objective value 51.637188
Clp0006I 0 Obj -197.90723 Primal inf 19.607792 (6)
Clp0006I 6 Obj -67.431733
Clp0000I Optimal - objective value -67.431733
Clp0006I 0 Obj -197.90723 Primal inf 3.2455537 (1)
Clp0006I 1 Obj -194.61328
Clp0000I Optimal - objective value -194.61328
Clp0006I 0 Obj -194.61328 Primal inf 6.0634406 (6)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0006I 4 Obj 2.7039007 Primal inf 0.2296988 (1)
Clp0001I Primal infeasible - objective value 2.7039007
Clp0000I Optimal - objective value -94.355748
Clp0006I 0 Obj -94.355748 Primal inf 1.9024404 (7)
Clp0006I 6 Obj -72.313013
Clp0000I Optimal - objective value -72.313013
Clp0000I Optimal - objective value -72.313013
Clp0006I 0 Obj -72.313013 Primal inf 0.014124215 (2)
Clp0006I 2 Obj -71.374161
Clp0000I Optimal - objective value -71.374161
Clp0000I Optimal - objective value -71.374161
Clp0000I Optimal - objective value -71.374161
Clp0006I 0 Obj -94.355748 Primal inf 7.8155293 (3)
Clp0006I 1 Obj -94.348635
Clp0000I Optimal - objective value -94.348635
Clp0006I 0 Obj -94.348635 Primal inf 2.4208231 (5)
Clp0006I 6 Obj -35.234987
Clp0000I Optimal - objective value -35.234987
Clp0000I Optimal - objective value -35.234987
Clp0006I 0 Obj -35.234987 Primal inf 6.4140877e-05 (4)
Clp0006I 4 Obj -35.232418
Clp0000I Optimal - objective value -35.232418
Clp0000I Optimal - objective value -35.232418
Clp0000I Optimal - objective value -35.232418
Clp0006I 0 Obj -71.374161 Primal inf 0.37385548 (1)
Clp0006I 1 Obj -71.328674
Clp0000I Optimal - objective value -71.328674
Clp0006I 0 Obj -71.328674 Primal inf 1.8294948 (7)
Clp0006I 6 Obj -35.313597
Clp0000I Optimal - objective value -35.313597
Clp0000I Optimal - objective value -35.313597
Clp0006I 0 Obj -35.313597 Primal inf 0.013533062 (2)
Clp0006I 2 Obj -34.939443
Clp0000I Optimal - objective value -34.939443
Clp0000I Optimal - objective value -34.939443
Clp0006I 0 Obj -34.939443 Primal inf 7.5188289e-07 (1)
Clp0006I 1 Obj -34.939406
Clp0000I Optimal - objective value -34.939406
Clp0000I Optimal - objective value -34.939406
Clp0000I Optimal - objective value -34.939406
Clp0000I Optimal - objective value -71.374161
Clp0006I 0 Obj -71.374161 Primal inf 1.9398706 (5)
Clp0006I 6 Obj -38.240487
Clp0000I Optimal - objective value -38.240487
Clp0000I Optimal - objective value -38.240487
Clp0006I 0 Obj -38.240487 Primal inf 0.07059221 (6)
Clp0006I 6 Obj -34.404747
Clp0000I Optimal - objective value -34.404747
Clp0000I Optimal - objective value -34.404747
Clp0006I 0 Obj -34.404747 Primal inf 0.0014044804 (2)
Clp0006I 2 Obj -34.349443
Clp0000I Optimal - objective value -34.349443
Clp0000I Optimal - objective value -34.349443
Clp0000I Optimal - objective value -34.349443
Clp0006I 0 Obj -33.429757 Primal inf 0.039535082 (3)
Clp0006I 1 Obj -33.429757
Clp0000I Optimal - objective value -33.429757
Clp0006I 0 Obj -33.429757 Primal inf 5.8965169 (3)
Clp0006I 3 Obj -31.55723
Clp0000I Optimal - objective value -31.55723
Clp0000I Optimal - objective value -31.55723
Clp0006I 0 Obj -31.55723 Primal inf 0.000631406 (2)
Clp0006I 2 Obj -31.544553
Clp0000I Optimal - objective value -31.544553
Clp0000I Optimal - objective value -31.544553
Clp0000I Optimal - objective value -31.544553
Clp0000I Optimal - objective value -34.939406
Clp0006I 0 Obj -34.939406 Primal inf 1.0591061 (2)
Clp0006I 2 Obj -34.479743
Clp0000I Optimal - objective value -34.479743
Clp0000I Optimal - objective value -34.479743
Clp0006I 0 Obj -34.479743 Primal inf 0.30213648 (4)
Clp0006I 4 Obj -32.87927
Clp0000I Optimal - objective value -32.87927
Clp0000I Optimal - objective value -32.87927
Clp0006I 0 Obj -32.87927 Primal inf 0.070034819 (2)
Clp0006I 2 Obj -32.126209
Clp0000I Optimal - objective value -32.126209
Clp0000I Optimal - objective value -32.126209
Clp0006I 0 Obj -32.126209 Primal inf 0.017219915 (2)
Clp0006I 3 Obj -31.760478
Clp0000I Optimal - objective value -31.760478
Clp0000I Optimal - objective value -31.760478
Clp0006I 0 Obj -31.760478 Primal inf 0.005099005 (2)
Clp0006I 1 Obj -31.580371
Clp0000I Optimal - objective value -31.580371
Clp0000I Optimal - objective value -31.580371
Clp0006I 0 Obj -31.580371 Primal inf 0.0012675145 (2)
Clp0006I 2 Obj -31.558049
Clp0000I Optimal - objective value -31.558049
Clp0006I 0 Obj -31.558049 Primal inf 0.00031867505 (2)
Clp0006I 2 Obj -31.546844
Clp0000I Optimal - objective value -31.546844
Clp0000I Optimal - objective value -31.546844
Clp0000I Optimal - objective value -31.546844
Clp0006I 0 Obj -31.546844 Primal inf 0.65246487 (8)
Clp0006I 8 Obj -1.7464154
Clp0000I Optimal - objective value -1.7464154
Clp0000I Optimal - objective value -1.7464154
Clp0006I 0 Obj -1.7464154 Primal inf 0.0029040691 (9)
Clp0006I 8 Obj -1.6504976
Clp0000I Optimal - objective value -1.6504976
Clp0000I Optimal - objective value -1.6504976
Clp0006I 0 Obj -1.6504976 Primal inf 4.7965392e-06 (2)
Clp0006I 2 Obj -1.6504109
Clp0000I Optimal - objective value -1.6504109
Clp0000I Optimal - objective value -1.6504109
Clp0006I 0 Obj -31.546844 Primal inf 0.088357256 (1)
Clp0006I 1 Obj -31.293584
Clp0000I Optimal - objective value -31.293584
Clp0006I 0 Obj -31.293584 Primal inf 0.50472553 (10)
Clp0006I 9 Obj -2.0327411
Clp0000I Optimal - objective value -2.0327411
Clp0000I Optimal - objective value -2.0327411
Clp0006I 0 Obj -2.0327411 Primal inf 0.17001016 (8)
Clp0006I 5 Obj 0.42567149 Primal inf 0.038310405 (3)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0006I 6 Obj 0.42637468 Primal inf 0.038354201 (1)
Clp0001I Primal infeasible - objective value 0.42637468
Clp0006I 0 Obj -1.6504109 Primal inf 0.9411086 (3)
Clp0006I 1 Obj -1.1848486
Clp0000I Optimal - objective value -1.1848486
Clp0006I 0 Obj -1.1848486 Primal inf 0.19127346 (7)
Clp0006I 1 Obj 2.016428 Primal inf 0.23666105 (7)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0006I 7 Obj 4.9987657 Primal inf 0.4487685 (1)
Clp0001I Primal infeasible - objective value 4.9987657
Clp0000I Optimal - objective value -1.6504109
Clp0006I 0 Obj -1.6504109 Primal inf 0.1616266 (5)
Clp0006I 1 Obj 0.69081715 Primal inf 0.084896923 (4)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0006I 4 Obj 0.78455267 Primal inf 0.070424049 (1)
Clp0001I Primal infeasible - objective value 0.78455267
Clp0006I 0 Obj -73.384779 Primal inf 3.4879949 (3)
Clp0006I 2 Obj -68.347243
Clp0000I Optimal - objective value -68.347243
Clp0006I 0 Obj -68.347243 Primal inf 1.5452824 (8)
Clp0006I 9 Obj -10.011792
Clp0000I Optimal - objective value -10.011792
Clp0000I Optimal - objective value -10.011792
Clp0006I 0 Obj -10.011792 Primal inf 0.22402569 (7)
Clp0006I 7 Obj -7.1594182
Clp0000I Optimal - objective value -7.1594182
Clp0000I Optimal - objective value -7.1594182
Clp0006I 0 Obj -7.1594182 Primal inf 0.00013532937 (2)
Clp0006I 2 Obj -7.1554568
Clp0000I Optimal - objective value -7.1554568
Clp0000I Optimal - objective value -7.1554568
Clp0000I Optimal - objective value -7.1554568
Clp0000I Optimal - objective value -73.384779
Clp0006I 0 Obj -73.384779 Primal inf 2.1433759 (6)
Clp0006I 6 Obj -40.463924
Clp0000I Optimal - objective value -40.463924
Clp0000I Optimal - objective value -40.463924
Clp0006I 0 Obj -40.463924 Primal inf 0.0027259159 (6)
Clp0006I 6 Obj -40.396468
Clp0000I Optimal - objective value -40.396468
Clp0000I Optimal - objective value -40.396468
Clp0006I 0 Obj -40.396468 Primal inf 0.00014120807 (6)
Clp0006I 6 Obj -40.392959
Clp0000I Optimal - objective value -40.392959
Clp0000I Optimal - objective value -40.392959
Clp0006I 0 Obj -40.392959 Primal inf 5.2718744e-06 (4)
Clp0006I 4 Obj -40.392777
Clp0000I Optimal - objective value -40.392777
Clp0000I Optimal - objective value -40.392777
Clp0006I 0 Obj -40.392777 Primal inf 1.7148743 (2)
Clp0006I 2 Obj -39.514101
Clp0000I Optimal - objective value -39.514101
Clp0006I 0 Obj -39.514101 Primal inf 1.6703075 (7)
Clp0006I 9 Obj -7.6474967
Clp0000I Optimal - objective value -7.6474967
Clp0000I Optimal - objective value -7.6474967
Clp0006I 0 Obj -7.6474967 Primal inf 0.3336526 (6)
Clp0006I 5 Obj -2.7635724
Clp0000I Optimal - objective value -2.7635724
Clp0000I Optimal - objective value -2.7635724
Clp0006I 0 Obj -2.7635724 Primal inf 0.23314632 (5)
Clp0006I 2 Obj 2.9745487 Primal inf 0.29265079 (3)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0006I 4 Obj 3.2278874 Primal inf 0.26488185 (1)
Clp0001I Primal infeasible - objective value 3.2278874
Clp0000I Optimal - objective value -40.392777
Clp0006I 0 Obj -40.392777 Primal inf 1.442883 (7)
Clp0006I 7 Obj -2.0410592
Clp0000I Optimal - objective value -2.0410592
Clp0000I Optimal - objective value -2.0410592
Clp0006I 0 Obj -2.0410592 Primal inf 3.8067981e-05 (4)
Clp0006I 4 Obj -2.0399357
Clp0000I Optimal - objective value -2.0399357
Clp0000I Optimal - objective value -2.0399357
Clp0006I 0 Obj -2.0399357 Primal inf 0.2227345 (1)
Clp0006I 1 Obj -1.9457107
Clp0000I Optimal - objective value -1.9457107
Clp0006I 0 Obj -0.54641454 Primal inf 0.036754306 (3)
Clp0006I 1 Obj -0.54641454
Clp0000I Optimal - objective value -0.54641454
Clp0006I 0 Obj -0.54641454 Primal inf 3.1462594 (3)
Clp0006I 4 Obj 1.2665768 Primal inf 0.14692458 (5)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0006I 5 Obj 1.2665768 Primal inf 0.10910047 (1)
Clp0001I Primal infeasible - objective value 1.2665768
Clp0000I Optimal - objective value -1.9457107
Clp0006I 0 Obj -1.9457107 Primal inf 0.5807778 (3)
Clp0006I 2 Obj -0.25804704
Clp0000I Optimal - objective value -0.25804704
Clp0000I Optimal - objective value -0.25804704
Clp0006I 0 Obj -0.25804704 Primal inf 0.08019927 (2)
Clp0006I 1 Obj 0.53376767 Primal inf 0.056981456 (4)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0006I 2 Obj 0.53376767 Primal inf 0.045875696 (1)
Clp0001I Primal infeasible - objective value 0.53376767
Clp0000I Optimal - objective value -35.232418
Clp0006I 0 Obj -35.232418 Primal inf 0.22099709 (3)
Clp0006I 3 Obj -27.869949
Clp0000I Optimal - objective value -27.869949
Clp0000I Optimal - objective value -27.869949
Clp0006I 0 Obj -27.869949 Primal inf 0.0060073313 (2)
Clp0006I 2 Obj -27.438855
Clp0000I Optimal - objective value -27.438855
Clp0000I Optimal - objective value -27.438855
Clp0006I 0 Obj -27.438855 Primal inf 5.0147183e-06 (2)
Clp0006I 2 Obj -27.438506
Clp0000I Optimal - objective value -27.438506
Clp0000I Optimal - objective value -27.438506
Clp0000I Optimal - objective value -27.438506
Clp0006I 0 Obj -35.232418 Primal inf 9.1833073 (5)
Clp0006I 1 Obj -33.959746
Clp0000I Optimal - objective value -33.959746
Clp0006I 0 Obj -33.959746 Primal inf 1.1570741 (5)
Clp0006I 5 Obj -11.059508
Clp0000I Optimal - objective value -11.059508
Clp0000I Optimal - objective value -11.059508
Clp0006I 0 Obj -11.059508 Primal inf 0.00020673675 (2)
Clp0006I 2 Obj -11.038207
Clp0000I Optimal - objective value -11.038207
Clp0000I Optimal - objective value -11.038207
Clp0000I Optimal - objective value -11.038207
Clp0006I 0 Obj -27.438506 Primal inf 2.6840844 (3)
Clp0006I 1 Obj -26.16136
Clp0000I Optimal - objective value -26.16136
Clp0006I 0 Obj -26.16136 Primal inf 0.63568246 (7)
Clp0006I 5 Obj -19.435871
Clp0000I Optimal - objective value -19.435871
Clp0000I Optimal - objective value -19.435871
Clp0006I 0 Obj -19.435871 Primal inf 0.0058061791 (2)
Clp0006I 2 Obj -19.093508
Clp0000I Optimal - objective value -19.093508
Clp0000I Optimal - objective value -19.093508
Clp0000I Optimal - objective value -19.093508
Clp0000I Optimal - objective value -27.438506
Clp0006I 0 Obj -27.438506 Primal inf 0.87149677 (6)
Clp0006I 6 Obj -12.548708
Clp0000I Optimal - objective value -12.548708
Clp0000I Optimal - objective value -12.548708
Clp0006I 0 Obj -12.548708 Primal inf 7.484519e-05 (7)
Clp0006I 7 Obj -12.543446
Clp0000I Optimal - objective value -12.543446
Clp0000I Optimal - objective value -12.543446
Clp0000I Optimal - objective value -12.543446
Clp0006I 0 Obj -17.583859 Primal inf 0.039535082 (3)
Clp0006I 1 Obj -17.583859
Clp0000I Optimal - objective value -17.583859
Clp0006I 0 Obj -17.583859 Primal inf 5.8684633 (3)
Clp0006I 3 Obj -14.140356
Clp0000I Optimal - objective value -14.140356
Clp0000I Optimal - objective value -14.140356
Clp0006I 0 Obj -14.140356 Primal inf 7.5093994e-06 (2)
Clp0006I 2 Obj -14.139927
Clp0000I Optimal - objective value -14.139927
Clp0000I Optimal - objective value -14.139927
Clp0000I Optimal - objective value -14.139927
Clp0000I Optimal - objective value -19.093508
Clp0006I 0 Obj -19.093508 Primal inf 1.0310524 (2)