From 2b7ddee13842f22f70028a9bdf8daf82e84008d0 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Mon, 15 Apr 2024 17:13:12 +0200 Subject: [PATCH] fix comment --- ortools/linear_solver/samples/simple_mip_program.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ortools/linear_solver/samples/simple_mip_program.py b/ortools/linear_solver/samples/simple_mip_program.py index 488953a2ec..72a241fbce 100644 --- a/ortools/linear_solver/samples/simple_mip_program.py +++ b/ortools/linear_solver/samples/simple_mip_program.py @@ -21,7 +21,7 @@ from ortools.linear_solver import pywraplp def main(): # [START solver] - # Create the mip solver with the SCIP backend. + # Create the mip solver with the CP-SAT backend. solver = pywraplp.Solver.CreateSolver("SAT") if not solver: return