We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f62bfb0 commit f026d7cCopy full SHA for f026d7c
1 file changed
predicators/ground_truth_models/boil/processes.py
@@ -42,7 +42,7 @@ def _place_on_burner_sampler(state: State, goal: Set[GroundAtom],
42
burner = objs[2]
43
x = state.get(burner, "x")
44
y = state.get(burner, "y") - PyBulletBoilEnv.jug_handle_offset
45
- return np.array([x, y, 0.0, _BOIL_DROP_Z], dtype=np.float32)
+ return np.array([x, y, -1.57, _BOIL_DROP_Z], dtype=np.float32)
46
47
48
def _place_under_faucet_sampler(state: State, goal: Set[GroundAtom],
@@ -56,7 +56,7 @@ def _place_under_faucet_sampler(state: State, goal: Set[GroundAtom],
56
x = state.get(faucet, "x")
57
y = (state.get(faucet, "y") - PyBulletBoilEnv.jug_handle_offset -
58
PyBulletBoilEnv.faucet_x_len)
59
60
61
62
def _place_outside_sampler(state: State, goal: Set[GroundAtom],
0 commit comments