|
12 | 12 | // See the License for the specific language governing permissions and
|
13 | 13 | // limitations under the License.
|
14 | 14 |
|
15 |
| -#ifndef BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_ |
16 |
| -#define BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_ |
| 15 | +#ifndef AUTOWARE_BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_ |
| 16 | +#define AUTOWARE_BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_ |
17 | 17 |
|
18 | 18 | #include "autoware_behavior_path_planner_common/interface/scene_module_interface.hpp"
|
19 | 19 | #include "autoware_behavior_path_planner_common/marker_utils/utils.hpp"
|
20 | 20 | #include "autoware_behavior_path_planner_common/utils/drivable_area_expansion/drivable_area_expansion.hpp"
|
21 | 21 | #include "autoware_behavior_path_planner_common/utils/drivable_area_expansion/static_drivable_area.hpp"
|
22 | 22 | #include "autoware_behavior_path_planner_common/utils/path_utils.hpp"
|
23 | 23 | #include "autoware_behavior_path_planner_common/utils/utils.hpp"
|
| 24 | +#include "autoware_behavior_path_sampling_planner_module/sampling_planner_parameters.hpp" |
| 25 | +#include "autoware_behavior_path_sampling_planner_module/util.hpp" |
24 | 26 | #include "autoware_bezier_sampler/bezier_sampling.hpp"
|
25 | 27 | #include "autoware_frenet_planner/frenet_planner.hpp"
|
26 | 28 | #include "autoware_sampler_common/constraints/footprint.hpp"
|
|
29 | 31 | #include "autoware_sampler_common/structures.hpp"
|
30 | 32 | #include "autoware_sampler_common/transform/spline_transform.hpp"
|
31 | 33 | #include "autoware_vehicle_info_utils/vehicle_info_utils.hpp"
|
32 |
| -#include "behavior_path_sampling_planner_module/sampling_planner_parameters.hpp" |
33 |
| -#include "behavior_path_sampling_planner_module/util.hpp" |
34 | 34 | #include "lanelet2_extension/utility/query.hpp"
|
35 | 35 | #include "lanelet2_extension/utility/utilities.hpp"
|
36 | 36 | #include "motion_utils/trajectory/path_with_lane_id.hpp"
|
|
56 | 56 | #include <unordered_map>
|
57 | 57 | #include <utility>
|
58 | 58 | #include <vector>
|
59 |
| -namespace behavior_path_planner |
| 59 | +namespace autoware::behavior_path_planner |
60 | 60 | {
|
| 61 | +// NOLINT |
| 62 | +using namespace ::behavior_path_planner; // NOLINT TODO(Maxime): remove once moved to autoware |
| 63 | + // namespace |
61 | 64 | using autoware_planning_msgs::msg::TrajectoryPoint;
|
62 | 65 | struct SamplingPlannerData
|
63 | 66 | {
|
@@ -142,8 +145,8 @@ class SamplingPlannerModule : public SceneModuleInterface
|
142 | 145 | }
|
143 | 146 |
|
144 | 147 | SamplingPlannerDebugData debug_data_;
|
145 |
| - behavior_path_planner::HardConstraintsFunctionVector hard_constraints_; |
146 |
| - behavior_path_planner::SoftConstraintsFunctionVector soft_constraints_; |
| 148 | + HardConstraintsFunctionVector hard_constraints_; |
| 149 | + SoftConstraintsFunctionVector soft_constraints_; |
147 | 150 |
|
148 | 151 | private:
|
149 | 152 | SamplingPlannerData createPlannerData(
|
@@ -261,6 +264,6 @@ class SamplingPlannerModule : public SceneModuleInterface
|
261 | 264 | const std::shared_ptr<const PlannerData> & planner_data) const;
|
262 | 265 | };
|
263 | 266 |
|
264 |
| -} // namespace behavior_path_planner |
| 267 | +} // namespace autoware::behavior_path_planner |
265 | 268 |
|
266 |
| -#endif // BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_ |
| 269 | +#endif // AUTOWARE_BEHAVIOR_PATH_SAMPLING_PLANNER_MODULE__SAMPLING_PLANNER_MODULE_HPP_ |
0 commit comments