Skip to content
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

chore: sync upstream #168

Merged
merged 26 commits into from
Nov 8, 2022
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a85f288
feat(osqp_interface): add warm startup interface (#2180)
purewater0901 Nov 1, 2022
0a4718d
refactor(ekf_localizer): add a struct to load hyper parameters (#2107)
IshitaTakeshi Nov 1, 2022
730848d
fix(default_ad_api): change motion state transition (#2181)
isamu-takagi Nov 1, 2022
dd39b5d
fix(obstacle_collision_checker): fix bug on dynamic parameter update …
brkay54 Nov 1, 2022
3a69438
fix(default_ad_api): disable motion api temporary (#2189)
isamu-takagi Nov 1, 2022
ff1af93
refactor(obstacle_collision_checker): add some debugs, change QoS (#2…
brkay54 Nov 1, 2022
a50e6bf
feat(tier4_autoware_utils): add twist library (#2187)
scepter914 Nov 2, 2022
4c0f75f
refactor(perception_utils): add classification util function with str…
scepter914 Nov 2, 2022
1862ee7
fix(vehicle_cmd_gate): fix pause control command (#2192)
isamu-takagi Nov 2, 2022
2997983
feat: add 'obstacle_velocity_limiter' package (#1579)
maxime-clem Nov 2, 2022
d10310d
feat: added the Butterworth filter class. (#2113)
boyali Nov 2, 2022
333044b
fix(obstacle_avoidance_planner): isPathGoalChanged (#2205)
kosuke55 Nov 3, 2022
7d761a5
feat(motion_utils): use setLongitudinalVelocity in insertStopPoint fo…
kosuke55 Nov 4, 2022
be5b0dc
fix(interpolation): query key is out of range due to double calculati…
takayuki5168 Nov 4, 2022
0369970
perf(intersection): reduce bg::within call (#2190)
soblin Nov 5, 2022
52a0525
fix(behavior_path_planner): fix offset sign expanding side shift driv…
maxime-clem Nov 6, 2022
27b83b8
ci(sync-files): sync clang-tidy-pr-comments workflows (#2217)
kenji-miyake Nov 6, 2022
f7bc465
chore: sync files (#2146)
awf-autoware-bot[bot] Nov 6, 2022
c5e7246
refactor(ndt_scan_matcher): isolate align function into ndt_omp (#2199)
kminoda Nov 7, 2022
ba64696
docs(behavior_velocity.traffic): fix typo (#2220)
h-ohta Nov 7, 2022
976d5c8
fix(behavior_velocity_planner): int/uint for path index (#2221)
soblin Nov 7, 2022
7c9f6e2
feat(raw-vehicle-cmd-converter): add test for pid (#2212)
tohmae Nov 7, 2022
2119d48
feat(pure_pursuit): add predicted trajectory (#2115)
brkay54 Nov 7, 2022
4dcf009
chore: sync files (#2227)
awf-autoware-bot[bot] Nov 7, 2022
ceb48c4
refactor(vehicle_constants_manager)!: remove package (#2232)
takayuki5168 Nov 7, 2022
7829c07
feat(tier4_planning/control_launch): add missing dependency (#2201)
takayuki5168 Nov 7, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(obstacle_avoidance_planner): isPathGoalChanged (autowarefoundatio…
…n#2205)

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>

Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
  • Loading branch information
kosuke55 authored Nov 3, 2022
commit 333044b455ade3c702e5560ae398cf28b15aabeb
4 changes: 2 additions & 2 deletions planning/obstacle_avoidance_planner/src/node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ bool ObstacleAvoidancePlanner::checkReplan(const PlannerData & planner_data)
return true;
}

if (isPathGoalChanged(planner_data)) {
if (isPathGoalChanged(p)) {
RCLCPP_INFO(get_logger(), "Replan with resetting optimization since path goal was changed.");
resetPrevOptimization();
return true;
Expand Down Expand Up @@ -1077,7 +1077,7 @@ bool ObstacleAvoidancePlanner::isPathGoalChanged(const PlannerData & planner_dat
{
const auto & p = planner_data;

if (prev_path_points_ptr_) {
if (!prev_path_points_ptr_) {
return false;
}

Expand Down