Skip to content
Snippets Groups Projects
Commit 3a8478bb authored by aastorg2's avatar aastorg2
Browse files

fix bug: parameter mismatch

parent c7a15dbe
No related branches found
No related tags found
No related merge requests found
......@@ -86,8 +86,8 @@ class DTreeAgBotStanleyGurobiTeacher(DTreeGurobiTeacherBase):
m_star = sensor
f = dynamics
g = controller
v_old = v(*m_star(x, y, theta))
v_new = v(*m_star(*f(x, y, theta, *g(cte, psi))))
v_old = v(*m_star((x, y, theta)))
v_new = v(*m_star( f((x, y, theta),*g((ctd, psi))) ))
return v_new <= max(v_old, self._ultimate_bound)
return spec(*ex)
......
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