Skip to content

Commit

Permalink
Update/clarify comment and link
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiirola committed May 17, 2024
1 parent a44e180 commit 2d2057d
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pyomo/solvers/plugins/solvers/CBCplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -832,12 +832,15 @@ def process_soln_file(self, results):
tokens = tuple(re.split('[ \t]+', line.strip()))
n_tokens = len(tokens)
#
# These are the only header entries CBC will generate (identified via browsing CbcSolver.cpp)
# See https://github.com/coin-or/Cbc/tree/master/src
# Search for (no integer solution - continuous used)
# Note that since this possibly also covers old CBC versions,
# we shall not be removing any functionality,
# even if it is not seen in the current revision
# These are the only header entries CBC will generate
# (identified via browsing CbcSolver.cpp) See
# https://github.com/coin-or/Cbc/tree/master/src/CbcSolver.cpp
# Search for "(no integer solution - continuous used)"
# (L10796 as of cb855c7)
#
# Note that since this possibly also covers old CBC
# versions, we shall not be removing any functionality, even
# if it is not seen in the current revision
#
if not header_processed:
if tokens[0] == 'Optimal':
Expand Down

0 comments on commit 2d2057d

Please sign in to comment.