GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
interface_simulation_end_checker.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_INTERFACE_SIMULATION_END_CHECKER_H_
9#define DESIGNLAB_INTERFACE_SIMULATION_END_CHECKER_H_
10
11#include "robot_state_node.h"
12
13
14namespace designlab
15{
16
20{
21public:
22 virtual ~ISimulationEndChecker() = default;
23
27 virtual bool IsEnd(const RobotStateNode& node) const = 0;
28};
29
30} // namespace designlab
31
32
33#endif // DESIGNLAB_INTERFACE_SIMULATION_END_CHECKER_H_
シミュレーションの終了を判定するクラスのインターフェース.
virtual bool IsEnd(const RobotStateNode &node) const =0
シミュレーションの終了を判定する.
virtual ~ISimulationEndChecker()=default
グラフ構造のためのノード(頂点).旧名 LNODE