File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed 
nav2_mppi_controller/include/nav2_mppi_controller Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff 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  }
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments