remove int64_t extra renaming

This commit is contained in:
Laurent Perron
2024-03-13 16:23:43 +01:00
parent 39590b4d9d
commit 7813cf7bbc
3 changed files with 6 additions and 6 deletions

View File

@@ -324,7 +324,7 @@ inline uint32_t IntervalDown32(uint32_t s) {
}
// ----- Bitset operators -----
// Bitset: array of uint32_t/uint64_t words
// Bitset: array of uint32_t/uint64 words
// Bit operators used to manipulates bitsets.

View File

@@ -72,9 +72,9 @@ void ComputeScalingErrors(absl::Span<const double> input,
}
template <bool use_bounds>
void GetBestScalingOfDoublesToInt64(const std::vector<double>& input,
const std::vector<double>& lb,
const std::vector<double>& ub,
void GetBestScalingOfDoublesToInt64(absl::Span<const double> input,
absl::Span<const double> lb,
absl::Span<const double> ub,
int64_t max_absolute_sum,
double* scaling_factor) {
const double kInfinity = std::numeric_limits<double>::infinity();

View File

@@ -74,7 +74,7 @@
__Unused__, Args...)
// The macro expansions can be hard to follow, so we show an example of the
// expected macro expansion with: ReturnType=int64_t, Args=int64_t, bool.
// EXPANSION EXAMPLE: "int64_t(int64_t, bool)".
// EXPANSION EXAMPLE: "int64(int64_t, bool)".
%typemap(in) std::function<PARENTHIZE(ReturnType, Args)> {
jclass object_class = jenv->FindClass(ClassPath ClassName);
if (nullptr == object_class) return $null;
@@ -84,7 +84,7 @@
operations_research::swig_util::CppClass* const fun =
reinterpret_cast<operations_research::swig_util::CppClass*>(
jenv->CallStaticLongMethod(object_class, method_id, $input));
// EXPANSION EXAMPLE: "int64_t i0, bool i1".
// EXPANSION EXAMPLE: "int64 i0, bool i1".
$1 = [fun](INSERT_NAMES(NumArgs)(Args)) {
// EXPANSION EXAMPLE: "i0, i1".
return fun->Run(NAMES(NumArgs));