MCPcopy Create free account
hub / github.com/google-deepmind/dm_control / lqr_6_2

Function lqr_6_2

dm_control/suite/lqr.py:66–74  ·  view source on GitHub ↗

Returns an LQR environment with 6 bodies of which first 2 are actuated.

(time_limit=_DEFAULT_TIME_LIMIT, random=None,
            environment_kwargs=None)

Source from the content-addressed store, hash-verified

64
65@SUITE.add()
66def lqr_6_2(time_limit=_DEFAULT_TIME_LIMIT, random=None,
67 environment_kwargs=None):
68 """Returns an LQR environment with 6 bodies of which first 2 are actuated."""
69 return _make_lqr(n_bodies=6,
70 n_actuators=2,
71 control_cost_coef=_CONTROL_COST_COEF,
72 time_limit=time_limit,
73 random=random,
74 environment_kwargs=environment_kwargs)
75
76
77def _make_lqr(n_bodies, n_actuators, control_cost_coef, time_limit, random,

Callers

nothing calls this directly

Calls 1

_make_lqrFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…