ortools: cleanup export form google3

This commit is contained in:
Corentin Le Molgat
2025-07-09 13:53:31 +02:00
parent 24eb888d2e
commit 9144637624
7 changed files with 13 additions and 21 deletions

View File

@@ -174,7 +174,7 @@ public static class IntVarArrayHelper
}
}
// TODO(user): Try to move this code back to the .swig with @define macros.
// TODO(user): Try to move this code back to the .i with @define macros.
public partial class IntVarVector : IDisposable,
System.Collections.IEnumerable
#if !SWIG_DOTNET_1

View File

@@ -21,22 +21,19 @@
#include <utility>
#include <vector>
#include "absl/container/flat_hash_map.h"
#include "absl/flags/flag.h"
#include "absl/strings/str_cat.h"
#include "absl/strings/str_format.h"
#include "absl/strings/string_view.h"
#include "absl/types/span.h"
#include "ortools/base/commandlineflags.h"
#include "ortools/base/logging.h"
#include "ortools/base/map_util.h"
#include "ortools/base/mathutil.h"
#include "ortools/base/stl_util.h"
#include "ortools/base/types.h"
#include "ortools/constraint_solver/constraint_solver.h"
#include "ortools/constraint_solver/constraint_solveri.h"
#include "ortools/util/bitset.h"
#include "ortools/util/piecewise_linear_function.h"
#include "ortools/util/saturated_arithmetic.h"
#include "ortools/util/string_array.h"
ABSL_FLAG(bool, cp_disable_expression_optimization, false,
"Disable special optimization when creating expressions.");
@@ -5849,8 +5846,8 @@ class SimpleConvexPiecewiseExpr : public BaseIntExpr {
DCHECK_GE(lc, int64_t{0});
DCHECK_GE(ld, ed);
// If the penalty is 0, we can push the "confort zone or zone
// of no cost towards infinity.
// If the penalty is 0, we can push the "comfort zone or zone of no cost
// towards infinity.
}
~SimpleConvexPiecewiseExpr() override {}