Skip to content

Commit

Permalink
Merge pull request #1 from chalmersfsd/develop
Browse files Browse the repository at this point in the history
Removed unecessary printing
  • Loading branch information
lowitz authored May 30, 2019
2 parents 48fdf74 + 5bfc1fd commit e9401a2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/logic-velocity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ float VelocityControl::dynamicSpeed()
// If the required deceleration is more than the limit, change the speed profile
if (requiredAcceleration < m_decelerationLimit) {
speedProfile[i-1] = std::sqrt(std::abs(std::pow(speedProfile[i], 2.0f) - 2.0f * m_decelerationLimit * distance));
std::cout << "[LOGIC-VELOCITY] speedProfile: " << speedProfile[i-1] << std::endl;
}
}

Expand Down

0 comments on commit e9401a2

Please sign in to comment.