You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (std::isnan(improvement_rate_solutions_distance) ||
improvement_rate_solutions_distance <= 0) {
note, std::isnan should be defined for IntegralType
bool isnan( IntegralType arg ); | (4) | (since C++11)
4) A set of overloads or a function template accepting the arg argument of any integral type.
Equivalent to (2) (the argument is cast to double).
This line won't compile on windows
or-tools/ortools/constraint_solver/routing_parameters.cc
Lines 313 to 317 in 5018149
note, std::isnan should be defined for
IntegralTyperef: https://en.cppreference.com/w/cpp/numeric/math/isnan
I suggest to cast the
int32todoubleThe text was updated successfully, but these errors were encountered: