From fdd489865fe8a928d57014b03f2cff03ccdd69e7 Mon Sep 17 00:00:00 2001 From: Laurent Perron Date: Mon, 27 Jul 2020 15:53:24 +0200 Subject: [PATCH] fix wrong type for linear coeffs --- ortools/sat/cp_model.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ortools/sat/cp_model.proto b/ortools/sat/cp_model.proto index 06abe9eb94..d69fc8e43d 100644 --- a/ortools/sat/cp_model.proto +++ b/ortools/sat/cp_model.proto @@ -78,7 +78,7 @@ message IntegerArgumentProto { message LinearExpressionProto { repeated int32 vars = 1; - repeated int32 coeffs = 2; + repeated int64 coeffs = 2; int64 offset = 3; }