fix wrong type for linear coeffs

This commit is contained in:
Laurent Perron
2020-07-27 15:53:24 +02:00
parent 488f70f546
commit fdd489865f

View File

@@ -78,7 +78,7 @@ message IntegerArgumentProto {
message LinearExpressionProto {
repeated int32 vars = 1;
repeated int32 coeffs = 2;
repeated int64 coeffs = 2;
int64 offset = 3;
}