From cc8ee317d764a40cf8ab580d5bcf05f3791fa335 Mon Sep 17 00:00:00 2001 From: Yoong Hor Meng Date: Sun, 21 Dec 2025 06:52:47 +0100 Subject: [PATCH] Rename CPSolver to CpSolver --- ortools/sat/python/cp_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ortools/sat/python/cp_model.py b/ortools/sat/python/cp_model.py index 435be0f7ba..d446bebd6e 100644 --- a/ortools/sat/python/cp_model.py +++ b/ortools/sat/python/cp_model.py @@ -18,7 +18,7 @@ methods for building and solving CP-SAT models. * [`CpModel`](#cp_model.CpModel): Methods for creating models, including variables and constraints. -* [`CPSolver`](#cp_model.CpSolver): Methods for solving +* [`CpSolver`](#cp_model.CpSolver): Methods for solving a model and evaluating solutions. The following methods implement callbacks that the