Skip to content

Commit a038a8f

Browse files
committed
fix wrong linting
1 parent ece604e commit a038a8f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

nav2_mppi_controller/include/nav2_mppi_controller/motion_models.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,12 @@ class MotionModel
9090
state.vx.col(i - 1) - min_delta_vx);
9191

9292
state.vx.col(i) = state.cvx.col(i - 1)
93-
.cwiseMax(lower_bound_vx)
94-
.cwiseMin(upper_bound_vx);
93+
.cwiseMax(lower_bound_vx)
94+
.cwiseMin(upper_bound_vx);
9595

9696
state.wz.col(i) = state.cwz.col(i - 1)
97-
.cwiseMax(state.wz.col(i - 1) - max_delta_wz)
98-
.cwiseMin(state.wz.col(i - 1) + max_delta_wz);
97+
.cwiseMax(state.wz.col(i - 1) - max_delta_wz)
98+
.cwiseMin(state.wz.col(i - 1) + max_delta_wz);
9999

100100
if (is_holo) {
101101
auto lower_bound_vy = (state.vy.col(i - 1) >
@@ -106,8 +106,8 @@ class MotionModel
106106
state.vy.col(i - 1) - min_delta_vy);
107107

108108
state.vy.col(i) = state.cvy.col(i - 1)
109-
.cwiseMax(lower_bound_vy)
110-
.cwiseMin(upper_bound_vy);
109+
.cwiseMax(lower_bound_vy)
110+
.cwiseMin(upper_bound_vy);
111111
}
112112
}
113113
}

0 commit comments

Comments
 (0)