@@ -455,7 +455,7 @@ def process_logfile(self):
455
455
tokens = tuple (re .split ('[ \t ]+' , line .strip ()))
456
456
n_tokens = len (tokens )
457
457
if n_tokens > 1 :
458
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L3769
458
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L3769
459
459
if n_tokens > 4 and tokens [:4 ] == (
460
460
'Continuous' ,
461
461
'objective' ,
@@ -539,7 +539,7 @@ def process_logfile(self):
539
539
results .problem .name = results .problem .name .split ('/' )[- 1 ]
540
540
if '\\ ' in results .problem .name :
541
541
results .problem .name = results .problem .name .split ('\\ ' )[- 1 ]
542
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L10840
542
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L10840
543
543
elif tokens [0 ] == 'Presolve' :
544
544
if n_tokens > 9 and tokens [3 ] == 'rows,' and tokens [6 ] == 'columns' :
545
545
results .problem .number_of_variables = int (tokens [4 ]) - int (
@@ -551,7 +551,7 @@ def process_logfile(self):
551
551
results .problem .number_of_objectives = 1
552
552
elif n_tokens > 6 and tokens [6 ] == 'infeasible' :
553
553
soln .status = SolutionStatus .infeasible
554
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L11105
554
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L11105
555
555
elif (
556
556
n_tokens > 11
557
557
and tokens [:2 ] == ('Problem' , 'has' )
@@ -563,7 +563,7 @@ def process_logfile(self):
563
563
results .problem .number_of_constraints = int (tokens [2 ])
564
564
results .problem .number_of_nonzeros = int (tokens [6 ][1 :])
565
565
results .problem .number_of_objectives = 1
566
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L10814
566
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L10814
567
567
elif (
568
568
n_tokens > 8
569
569
and tokens [:3 ] == ('Original' , 'problem' , 'has' )
@@ -579,7 +579,7 @@ def process_logfile(self):
579
579
in ' ' .join (tokens )
580
580
):
581
581
results .problem .sense = maximize
582
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L3047
582
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L3047
583
583
elif n_tokens > 3 and tokens [:2 ] == ('Result' , '-' ):
584
584
if tokens [2 :4 ] in [('Run' , 'abandoned' ), ('User' , 'ctrl-c' )]:
585
585
results .solver .termination_condition = (
@@ -609,15 +609,15 @@ def process_logfile(self):
609
609
'solution' : TerminationCondition .other ,
610
610
'iterations' : TerminationCondition .maxIterations ,
611
611
}.get (tokens [4 ], TerminationCondition .other )
612
- # perhaps from https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L12318
612
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L12318
613
613
elif n_tokens > 3 and tokens [2 ] == "Finished" :
614
614
soln .status = SolutionStatus .optimal
615
615
optim_value = _float (tokens [4 ])
616
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L7904
616
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L7904
617
617
elif n_tokens >= 3 and tokens [:2 ] == ('Objective' , 'value:' ):
618
618
# parser for log file generetated with discrete variable
619
619
optim_value = _float (tokens [2 ])
620
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L7904
620
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L7904
621
621
elif n_tokens >= 4 and tokens [:4 ] == (
622
622
'No' ,
623
623
'feasible' ,
@@ -630,25 +630,25 @@ def process_logfile(self):
630
630
lower_bound is None
631
631
): # Only use if not already found since this is to less decimal places
632
632
results .problem .lower_bound = _float (tokens [2 ])
633
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L7918
633
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L7918
634
634
elif tokens [0 ] == 'Gap:' :
635
635
# This is relative and only to 2 decimal places - could calculate explicitly using lower bound
636
636
gap = _float (tokens [1 ])
637
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L7923
637
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L7923
638
638
elif n_tokens > 2 and tokens [:2 ] == ('Enumerated' , 'nodes:' ):
639
639
nodes = int (tokens [2 ])
640
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L7926
640
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L7926
641
641
elif n_tokens > 2 and tokens [:2 ] == ('Total' , 'iterations:' ):
642
642
results .solver .statistics .black_box .number_of_iterations = int (
643
643
tokens [2 ]
644
644
)
645
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L7930
645
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L7930
646
646
elif n_tokens > 3 and tokens [:3 ] == ('Time' , '(CPU' , 'seconds):' ):
647
647
results .solver .system_time = _float (tokens [3 ])
648
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L7933
648
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L7933
649
649
elif n_tokens > 3 and tokens [:3 ] == ('Time' , '(Wallclock' , 'Seconds):' ):
650
650
results .solver .wallclock_time = _float (tokens [3 ])
651
- # https://projects. coin-or.org /Cbc/browser/trunk /Cbc/src/CbcSolver.cpp?rev=2497 #L10477
651
+ # https://github.com/ coin-or/Cbc/blob/cb6bf98 /Cbc/src/CbcSolver.cpp#L10477
652
652
elif n_tokens > 4 and tokens [:4 ] == (
653
653
'Total' ,
654
654
'time' ,
@@ -832,11 +832,15 @@ def process_soln_file(self, results):
832
832
tokens = tuple (re .split ('[ \t ]+' , line .strip ()))
833
833
n_tokens = len (tokens )
834
834
#
835
- # These are the only header entries CBC will generate (identified via browsing CbcSolver.cpp)
836
- # See https://projects.coin-or.org/Cbc/browser/trunk/Cbc/src/CbcSolver.cpp
837
- # Search for (no integer solution - continuous used) Currently line 9912 as of rev2497
838
- # Note that since this possibly also covers old CBC versions, we shall not be removing any functionality,
839
- # even if it is not seen in the current revision
835
+ # These are the only header entries CBC will generate
836
+ # (identified via browsing CbcSolver.cpp). See
837
+ # https://github.com/coin-or/Cbc/tree/master/src/CbcSolver.cpp
838
+ # Search for "(no integer solution - continuous used)"
839
+ # (L10796 as of cb855c7)
840
+ #
841
+ # Note that since this possibly also supports old CBC
842
+ # versions, we shall not be removing any functionality, even
843
+ # if it is not seen in the current revision
840
844
#
841
845
if not header_processed :
842
846
if tokens [0 ] == 'Optimal' :
0 commit comments