Closed
Description
The contact forces are all zero in the the MuJoCo Ant-v2/v3 environments. If one runs
import gym
import numpy as np
e = gym.make('Ant-v3')
for _ in range(100):
e.reset()
for i in range(1000):
x=e.step(e.action_space.sample())[0]
print(np.linalg.norm(x[27:]))
the last 84 dimensions in the state out of 111 dimensions are always zero. These dimensions are the contact forces in ant_v3.py (https://github.com/openai/gym/blob/master/gym/envs/mujoco/ant_v3.py#L124). Since the ant is in contact with the ground, I believe there should be some contact forces that are non-zero. Can you please clarify if this is the expected behavior?