Apollo
10.0
自动驾驶开放平台
path_time_heuristic_optimizer.h
浏览该文件的文档.
1
/******************************************************************************
2
* Copyright 2017 The Apollo Authors. All Rights Reserved.
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*****************************************************************************/
16
21
#pragma once
22
23
#include <memory>
24
#include <string>
25
26
#include "modules/common_msgs/planning_msgs/planning_internal.pb.h"
27
#include "modules/planning/tasks/path_time_heuristic/proto/path_time_heuristic.pb.h"
28
#include "
cyber/plugin_manager/plugin_manager.h
"
29
#include "
modules/planning/planning_interface_base/task_base/common/speed_optimizer.h
"
30
31
namespace
apollo
{
32
namespace
planning
{
33
39
class
PathTimeHeuristicOptimizer
:
public
SpeedOptimizer
{
40
public
:
41
bool
Init
(
const
std::string& config_dir,
const
std::string& name,
42
const
std::shared_ptr<DependencyInjector>& injector)
override
;
43
44
private
:
45
common::Status
Process(
const
PathData
& path_data,
46
const
common::TrajectoryPoint
& init_point,
47
SpeedData
*
const
speed_data)
override
;
48
49
bool
SearchPathTimeGraph(
SpeedData
* speed_data)
const
;
50
51
private
:
52
common::TrajectoryPoint
init_point_;
53
SLBoundary
adc_sl_boundary_;
54
SpeedHeuristicOptimizerConfig
config_;
55
};
56
57
CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN
(
58
apollo::planning::PathTimeHeuristicOptimizer
,
Task
)
59
60
}
// namespace planning
61
}
// namespace apollo
apollo::common::Status
A general class to denote the return status of an API call.
Definition
status.h:43
apollo::planning::PathData
Definition
path_data.h:36
apollo::planning::PathTimeHeuristicOptimizer
PathTimeHeuristicOptimizer does ST graph speed planning with dynamic programming algorithm.
Definition
path_time_heuristic_optimizer.h:39
apollo::planning::PathTimeHeuristicOptimizer::Init
bool Init(const std::string &config_dir, const std::string &name, const std::shared_ptr< DependencyInjector > &injector) override
Definition
path_time_heuristic_optimizer.cc:35
apollo::planning::SpeedData
Definition
speed_data.h:30
apollo::planning::SpeedOptimizer
Definition
speed_optimizer.h:31
apollo::planning::Task
Definition
task.h:37
planning
Planning module main class.
plugin_manager.h
CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN
#define CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN(name, base)
Definition
plugin_manager.h:272
apollo
class register implement
Definition
arena_queue.h:37
speed_optimizer.h
apollo::common::TrajectoryPoint
Definition
pnc_point.proto:61
apollo::planning::SLBoundary
Definition
sl_boundary.proto:24
apollo::planning::SpeedHeuristicOptimizerConfig
Definition
path_time_heuristic.proto:8
modules
planning
tasks
path_time_heuristic
path_time_heuristic_optimizer.h