allan

Results 11 issues of allan

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] **Describe the solution you'd...

when calculating the cost in CalculateCostAt(), why the acc is calculated as 2 * (cost_cr.point().s() / unit_t_ - init_point_.v()) / unit_t_, while in calculating the cost of edge the acceleration...

Module: Planning

Why should the maximum steering angle rate be divided by an additional 2 when calculating the dddx bound? Is it for safety margin considerations? Why should dddx be multiplied by...

Module: Planning

Why do we need a fallback path? If other paths cannot be generated, shouldn't vehicle stop moving? Doesn't ignoring static obstacles in the fallback path create danger?

Module: Planning

```cpp // set x, x', x'' bounds for (int i = 0; i < num_of_variables; ++i) { if (i < n) { variables[i].emplace_back(constraint_index, 1.0); lower_bounds->at(constraint_index) = x_bounds_[i].first * scale_factor_[0]; upper_bounds->at(constraint_index)...

Module: Planning

![img_v3_02ck_2b6ac691-037b-4c70-b607-8549a3723bdg](https://github.com/ApolloAuto/apollo/assets/83057203/a311e9cd-f47a-45d6-910d-b00b76e4a3c8) Why impose the restriction? vehicles cannot move too far within a single time unit?

Module: Planning

seems like it will skip the generation of st boundary of obstacles

Module: Planning

Why does GetOverlapBoundaryPoints use a simpler and more approximate detection method for static obstacles, instead of the more precise boundary shrinking method used for dynamic obstacles?

Module: Planning