Update generated doxygen to v7.7

This commit is contained in:
Mizux Seiha
2020-06-11 12:23:09 +02:00
parent bbdc3b4aa1
commit 12c5f4a97d
4162 changed files with 266346 additions and 183145 deletions

View File

@@ -347,7 +347,7 @@ class LinearExpr(object):
if arg == INT_MIN:
raise ArithmeticError('< INT_MIN is not supported')
return BoundedLinearExpression(
self, [INT_MIN, cp_model_helper.CapInt64(arg - 1)])
self, [INT_MIN, arg - 1])
else:
return BoundedLinearExpression(self - arg, [INT_MIN, -1])
@@ -357,7 +357,7 @@ class LinearExpr(object):
if arg == INT_MAX:
raise ArithmeticError('> INT_MAX is not supported')
return BoundedLinearExpression(
self, [cp_model_helper.CapInt64(arg + 1), INT_MAX])
self, [arg + 1, INT_MAX])
else:
return BoundedLinearExpression(self - arg, [1, INT_MAX])
@@ -373,8 +373,8 @@ class LinearExpr(object):
else:
return BoundedLinearExpression(self, [
INT_MIN,
cp_model_helper.CapInt64(arg - 1),
cp_model_helper.CapInt64(arg + 1), INT_MAX
arg - 1,
arg + 1, INT_MAX
])
else:
return BoundedLinearExpression(self - arg,
@@ -5760,7 +5760,7 @@ model.Add(cp_model.LinearExpr.ScalProd(expressions, coefficients) >= 0)
if arg == INT_MIN:
raise ArithmeticError('< INT_MIN is not supported')
return BoundedLinearExpression(
self, [INT_MIN, cp_model_helper.CapInt64(arg - 1)])
self, [INT_MIN, arg - 1])
else:
return BoundedLinearExpression(self - arg, [INT_MIN, -1])
@@ -5770,7 +5770,7 @@ model.Add(cp_model.LinearExpr.ScalProd(expressions, coefficients) >= 0)
if arg == INT_MAX:
raise ArithmeticError('> INT_MAX is not supported')
return BoundedLinearExpression(
self, [cp_model_helper.CapInt64(arg + 1), INT_MAX])
self, [arg + 1, INT_MAX])
else:
return BoundedLinearExpression(self - arg, [1, INT_MAX])
@@ -5786,8 +5786,8 @@ model.Add(cp_model.LinearExpr.ScalProd(expressions, coefficients) >= 0)
else:
return BoundedLinearExpression(self, [
INT_MIN,
cp_model_helper.CapInt64(arg - 1),
cp_model_helper.CapInt64(arg + 1), INT_MAX
arg - 1,
arg + 1, INT_MAX
])
else:
return BoundedLinearExpression(self - arg,