Main Page
Namespaces
Classes
Files
File List
File Members
include
vigir_footstep_planning_default_plugins
heuristics
step_cost_heuristic.h
Go to the documentation of this file.
1
//=================================================================================================
2
// Copyright (c) 2018, Alexander Stumpf, TU Darmstadt
3
// Based on http://wiki.ros.org/footstep_planner by Johannes Garimort and Armin Hornung
4
// All rights reserved.
5
6
// Redistribution and use in source and binary forms, with or without
7
// modification, are permitted provided that the following conditions are met:
8
// * Redistributions of source code must retain the above copyright
9
// notice, this list of conditions and the following disclaimer.
10
// * Redistributions in binary form must reproduce the above copyright
11
// notice, this list of conditions and the following disclaimer in the
12
// documentation and/or other materials provided with the distribution.
13
// * Neither the name of the Simulation, Systems Optimization and Robotics
14
// group, TU Darmstadt nor the names of its contributors may be used to
15
// endorse or promote products derived from this software without
16
// specific prior written permission.
17
18
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
// ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
22
// DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
// (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25
// ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
//=================================================================================================
29
30
#ifndef VIGIR_FOOTSTEP_PLANNING_STEP_COST_HEURISTIC_H__
31
#define VIGIR_FOOTSTEP_PLANNING_STEP_COST_HEURISTIC_H__
32
33
#include <vigir_footstep_planning_lib/math.h>
34
35
#include <vigir_footstep_planning_plugins/plugins/heuristic_plugin.h>
36
37
38
39
namespace
vigir_footstep_planning
40
{
48
class
StepCostHeuristic
49
:
public
HeuristicPlugin
50
{
51
public
:
52
StepCostHeuristic
();
53
54
bool
loadParams
(
const
vigir_generic_params::ParameterSet& params = vigir_generic_params::ParameterSet())
override
;
55
56
double
getHeuristicValue
(
const
State& from,
const
State& to,
const
State& start,
const
State& goal)
const override
;
57
58
protected
:
59
double
step_cost_
;
60
double
diff_angle_cost_
;
61
63
double
max_step_dist_x_inv_
;
64
double
max_step_dist_y_inv_
;
65
};
66
}
67
68
#endif
vigir_footstep_planning::StepCostHeuristic::max_step_dist_x_inv_
double max_step_dist_x_inv_
longest step width
Definition:
step_cost_heuristic.h:63
vigir_footstep_planning::StepCostHeuristic::getHeuristicValue
double getHeuristicValue(const State &from, const State &to, const State &start, const State &goal) const override
Definition:
step_cost_heuristic.cpp:26
vigir_footstep_planning::StepCostHeuristic::step_cost_
double step_cost_
Definition:
step_cost_heuristic.h:59
vigir_footstep_planning
Definition:
dynamics_heuristic.h:39
vigir_footstep_planning::StepCostHeuristic::StepCostHeuristic
StepCostHeuristic()
Definition:
step_cost_heuristic.cpp:7
vigir_footstep_planning::StepCostHeuristic::loadParams
bool loadParams(const vigir_generic_params::ParameterSet ¶ms=vigir_generic_params::ParameterSet()) override
Definition:
step_cost_heuristic.cpp:12
vigir_footstep_planning::StepCostHeuristic::max_step_dist_y_inv_
double max_step_dist_y_inv_
Definition:
step_cost_heuristic.h:64
vigir_footstep_planning::StepCostHeuristic::diff_angle_cost_
double diff_angle_cost_
Definition:
step_cost_heuristic.h:60
vigir_footstep_planning::StepCostHeuristic
Determining the heuristic value by the euclidean distance between two states, the expected step costs...
Definition:
step_cost_heuristic.h:48
vigir_footstep_planning_default_plugins
Author(s): Alexander Stumpf
autogenerated on Sun Nov 17 2019 03:30:01