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
13namespace designlab {
14
18 public:
19 virtual ~ISimulationEndChecker() = default;
20
24 virtual bool IsEnd(const RobotStateNode& node) const = 0;
25};
26
27} // namespace designlab
28
29#endif // DESIGNLAB_INTERFACE_SIMULATION_END_CHECKER_H_
シミュレーションの終了を判定するクラスのインターフェース.
virtual bool IsEnd(const RobotStateNode &node) const =0
シミュレーションの終了を判定する.
virtual ~ISimulationEndChecker()=default
グラフ構造のためのノード(頂点).