You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
The statement target_speed_ = target_speed.getAbsoluteValue(getCanonicalizedStatus(), other_status_); in line 483 sets the target speed only in cases where the target speed has already been reached, which seems counter intuitive. This statement’s position is inconsistent with lines 469
Solution
Line 483 should be moved down, outside of the “if” statement. This way the most up to date target speed will be set on each iteration until the target speed is reached. Then it will be consistent with line 469.
Description
The statement
target_speed_ = target_speed.getAbsoluteValue(getCanonicalizedStatus(), other_status_);
in line 483 sets the target speed only in cases where the target speed has already been reached, which seems counter intuitive. This statement’s position is inconsistent with lines 469Solution
Line 483 should be moved down, outside of the “if” statement. This way the most up to date target speed will be set on each iteration until the target speed is reached. Then it will be consistent with line 469.
The text was updated successfully, but these errors were encountered: