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"
30
31namespace apollo {
32namespace planning {
33
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_;
55};
56
59
60} // namespace planning
61} // namespace apollo
A general class to denote the return status of an API call.
Definition status.h:43
PathTimeHeuristicOptimizer does ST graph speed planning with dynamic programming algorithm.
bool Init(const std::string &config_dir, const std::string &name, const std::shared_ptr< DependencyInjector > &injector) override
Planning module main class.
#define CYBER_PLUGIN_MANAGER_REGISTER_PLUGIN(name, base)
class register implement
Definition arena_queue.h:37