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
We should wrap the calls to/reimplement Eigen::set_is_malloc_allowed since it modifies a static variable in an Eigen method, and a different variable may be updated when someone using RobOptim wants to update the same variable:
inlineboolis_malloc_allowed_impl(bool update, bool new_value = false)
{
staticbool value = true;
if (update == 1)
value = new_value;
return value;
}
The text was updated successfully, but these errors were encountered:
We should wrap the calls to/reimplement
Eigen::set_is_malloc_allowed
since it modifies astatic
variable in an Eigen method, and a different variable may be updated when someone using RobOptim wants to update the same variable:The text was updated successfully, but these errors were encountered: