Skip to content
Snippets Groups Projects
Commit 398e569a authored by chsieh16's avatar chsieh16
Browse files

Specify name as an init parameter

parent cb1dc02d
No related branches found
No related tags found
No related merge requests found
......@@ -29,8 +29,8 @@ NEW_RAW_ANG_ERR_LIM = ANG_LIM + FORWARD_VEL * CYCLE_TIME
class GEMStanleyTeacher(GurobiTeacherBase):
def __init__(self) -> None:
super().__init__(name="gem_stanley",
def __init__(self, name="gem_stanley") -> None:
super().__init__(name=name,
state_dim=3, perc_dim=2, ctrl_dim=1)
def _add_system(self) -> None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment