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
While developing on top of this library, I am occasionally failing this assertion error. It seems to be when I try to generate plans between two states that are relatively close together (but not always).
CC Dubins State Space.
I will try to produce a minimal example when possible, but I wanted to raise this issue in case there can be discussion in the meantime.
Cheers!
Vinny
The text was updated successfully, but these errors were encountered:
// check if start and goal state are equal
if (state_equal(start_state, end_state))
{
**Control control = subtract_control(start_control, end_control);**
distances.push_back(fabs(control.delta_s));
}
i have temporarily resolved the issue upstream by assuring the start and end states have euclidean distance at least 2x the discretization of the dubins state space
While developing on top of this library, I am occasionally failing this assertion error. It seems to be when I try to generate plans between two states that are relatively close together (but not always).
CC Dubins State Space.
I will try to produce a minimal example when possible, but I wanted to raise this issue in case there can be discussion in the meantime.
Cheers!
Vinny
The text was updated successfully, but these errors were encountered: