-
-
Notifications
You must be signed in to change notification settings - Fork 172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[C++] Geometric path fails when evaluating on its boundaries. #214
Comments
It's because the path is valid if |
As for the issue you mention in the title, is this due to small numerical errors? |
This error happens sometimes during the optimization:
Where the position is equal to one of the bounds of the range. Can this be be due to numerical errors? |
@DianeBury can you make sure the above message prints the message with full precision ?
I don't understand that. Do you mean invalid ? |
Ok, I misread the check above. I understand now. It must be a numerical error then. |
Is there a specific reason why the check below is strict (
<
,>
) and not loose (<=
,>=
) ?toppra/cpp/src/toppra/geometric_path/piecewise_poly_path.cpp
Line 241 in 8387f7d
The text was updated successfully, but these errors were encountered: