GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
DesignLab
simulation_end_checker_by_goal_tape.h
[詳解]
1
3
4
// Copyright(c) 2023-2025 Design Engineering Laboratory, Saitama University
5
// Released under the MIT license
6
// https://opensource.org/licenses/mit-license.php
7
8
#ifndef DESIGNLAB_SIMULATION_END_CHECKER_BY_GOAL_TAPE_H_
9
#define DESIGNLAB_SIMULATION_END_CHECKER_BY_GOAL_TAPE_H_
10
11
#include "
interface_simulation_end_checker.h
"
12
13
#include "
robot_state_node.h
"
14
15
16
namespace
designlab
17
{
18
21
class
SimulationEndCheckerByGoalTape
final :
public
ISimulationEndChecker
22
{
23
public
:
24
explicit
SimulationEndCheckerByGoalTape
(
float
goal_tape_x);
25
26
bool
IsEnd
(
const
RobotStateNode
& node)
const override
;
27
28
private
:
30
const
float
kGoalTape;
31
};
32
33
}
// namespace designlab
34
35
36
#endif
// DESIGNLAB_SIMULATION_END_CHECKER_BY_GOAL_TAPE_H_
designlab::ISimulationEndChecker
シミュレーションの終了を判定するクラスのインターフェース.
Definition
interface_simulation_end_checker.h:20
designlab::SimulationEndCheckerByGoalTape
ゴールテープによるシミュレーション終了判定クラス.
Definition
simulation_end_checker_by_goal_tape.h:22
designlab::SimulationEndCheckerByGoalTape::IsEnd
bool IsEnd(const RobotStateNode &node) const override
シミュレーションの終了を判定する.
Definition
simulation_end_checker_by_goal_tape.cpp:19
interface_simulation_end_checker.h
designlab
Definition
abstract_dxlib_gui.cpp:18
robot_state_node.h
designlab::RobotStateNode
グラフ構造のためのノード(頂点).旧名 LNODE
Definition
robot_state_node.h:47
構築:
1.9.8