Skip to content

Commit 98cb551

Browse files
committed
code clean up for lgtm
1 parent a26e4ad commit 98cb551

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

PathTracking/lqr_speed_steer_control/lqr_speed_steer_control.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ def solve_DARE(A, B, Q, R):
6666
Xn = A.T * X * A - A.T * X * B * \
6767
la.inv(R + B.T * X * B) * B.T * X * A + Q
6868
if (abs(Xn - X)).max() < eps:
69-
X = Xn
7069
break
7170
X = Xn
7271

0 commit comments

Comments
 (0)