Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged autoware_behavior_velocity_planner_common at Robotics Stack Exchange
Package Summary
| Version | 1.9.0 |
| License | Apache License 2.0 |
| Build type | AMENT_CMAKE |
| Use | RECOMMENDED |
Repository Summary
| Checkout URI | https://github.com/autowarefoundation/autoware_core.git |
| VCS Type | git |
| VCS Version | main |
| Last Updated | 2026-07-03 |
| Dev Status | DEVELOPED |
| Released | RELEASED |
| Contributing |
Help Wanted (-)
Good First Issues (-) Pull Requests to Review (-) |
Package Description
Maintainers
- Zulfaqar Azmi
- Mamoru Sobue
- Takumi Odashima
Authors
- Yukihiro Saito
- Takagi, Isamu
Behavior Velocity Planner Common
This package provides a behavior velocity interface without RTC, and common functions as a library, which are used in the behavior_velocity_planner node and modules.
Changelog for package autoware_behavior_velocity_planner_common
1.1.0 (2025-05-01)
1.9.0 (2026-06-24)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds (#1135)
* test(autoware_behavior_velocity_planner_common): cover pure helpers and dedup formatIds Add focused unit tests for under-covered pure algorithms in planning_utils and deterministically pin the StateMachine STOP->GO margin-time transition, while de-duplicating the verbatim formatIds helper across the stable and experimental SceneModuleInterface translation units.
- Extract the byte-for-byte duplicated anonymous-namespace formatIds into a single internal free function planning_utils::formatIds (declared in util.hpp, defined in util.cpp) and call it from both scene_module_interface.cpp and experimental/scene_module_interface.cpp. Additive, no public class API change.
- test_util_pure.cpp: assert getSortedLaneIdsFromPath order/dedup, getSubsequentLaneIdsSetOnPath middle/first/not-found, findReachTime invalid-range throw plus linear/constant-accel roots, calcDecelerationVelocityFromDistanceToTarget non-negative jerk/accel throws and the behind-ego/const-jerk/const-accel/already-stopping branches with exact expected values, and formatIds output strings.
- test_state_machine.cpp: drive a controllable RCL_ROS_TIME clock (ros-time override) to assert the STOP->GO margin-time transition and the same-state STOP timer reset deterministically, replacing the wall-clock busy-loop whose assertions self-disable on fast CI. Refs: autowarefoundation/autoware_core#1096
* test(autoware_behavior_velocity_planner_common): move formatIds to internal header Address review feedback: the dedup helper formatIds was declared in the installed public header util.hpp, growing the public API surface for a symbol that is internal-only (used solely by the stable and experimental SceneModuleInterface TUs, not by any test).
- Move the declaration to a non-installed internal header src/utilization/util_internal.hpp (bare include guard per src/ header convention) and keep the definition in util.cpp.
- Add 'src' to the library's private include dirs so all TUs include it via the directory-qualified path utilization/util_internal.hpp.
- Drop the now-unneeded public util.hpp include from both scene_module_interface TUs. Refs: autowarefoundation/autoware_core#1096
* style(pre-commit): autofix ---------Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
-
Contributors: Yutaka Kondo, github-actions
1.8.0 (2026-05-01)
-
Merge remote-tracking branch 'origin/main' into tmp/bot/bump_version_base
-
feat(behavior_velocity_planner_common): add [Trajectory]{.title-ref} class version of [smoothPath()]{.title-ref} (#1022)
- add Trajectory class version of [smoothPath()]{.title-ref}
- add test
- return optional instead of inout arg
* fix test ---------
-
fix(autoware_behavior_velocity_planner_common): fix bugprone-narrowing-conversions warnings (#940) Co-authored-by: Junya Sasaki <<j2sasaki1990@gmail.com>>
-
chore: organize maintainer (#857)
-
Contributors: Mitsuhiro Sakamoto, NorahXiong, Satoshi OTA, github-actions
1.7.0 (2026-02-14)
- Merge remote-tracking branch 'origin/main' into humble
- refactor(planning, common): replace lanelet2_extension function (#796)
- Contributors: Mamoru Sobue, Ryohsuke Mitsudome
1.6.0 (2025-12-30)
File truncated at 100 lines see the full file
Package Dependencies
System Dependencies
| Name |
|---|
| eigen |