polish examples and samples

This commit is contained in:
Laurent Perron
2020-06-26 09:35:26 +02:00
parent a8cd11401f
commit 2022071171
28 changed files with 47 additions and 48 deletions

View File

@@ -22,7 +22,7 @@ def IntegerProgrammingExample():
"""Integer programming sample."""
# [START solver]
# Create the mip solver with the CBC backend.
solver = pywraplp.Solver.CreateSolver('integer_programming_example', 'cbc')
solver = pywraplp.Solver.CreateSolver('integer_programming_example', 'CBC')
# [END solver]