#include "mgr.hpp" #include #include #include #include using namespace madrona; namespace test_utils { const float EPSILON = 0.001f; // Decreased epsilon to account for floating point errors. TODO: increase floating point precision and ideally use 1e-6 as epsilon. std::vector flatten_obs(const py::Tensor &obs); std::pair calcMean(const nlohmann::json &rawJson); } // namespace utils