Change mju_round to use standard round() function.

PiperOrigin-RevId: 942873144
Change-Id: I3fd0d630643c104ff464d619387ff36582c2a5d8
This commit is contained in:
Yuval Tassa
2026-07-05 10:47:30 -07:00
committed by Copybara-Service
parent 4cb14bef47
commit 1ea2d884d2
3 changed files with 31 additions and 9 deletions
+5 -9
View File
@@ -15,13 +15,13 @@
#include "engine/engine_util_misc.h"
#include <ctype.h>
#include <limits.h>
#include <math.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mujoco/mjdata.h>
#include <mujoco/mjmacro.h>
#include <mujoco/mjmodel.h>
#include "engine/engine_array_safety.h"
@@ -1762,14 +1762,10 @@ mjtNum mju_sign(mjtNum x) {
// round to nearest integer
int mju_round(mjtNum x) {
mjtNum lower = floor(x);
mjtNum upper = ceil(x);
if (x-lower < upper-x) {
return (int)lower;
} else {
return (int)upper;
}
double d = (double)x;
if (d > INT_MAX) return INT_MAX;
if (d < INT_MIN) return INT_MIN;
return (int)round(d);
}