GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
simulation_end_checker_factory.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_FACTORY_H_
9#define DESIGNLAB_SIMULATION_END_CHECKER_FACTORY_H_
10
11#include <memory>
12
15
16namespace designlab {
17
21 public:
25 static std::unique_ptr<ISimulationEndChecker> Create(
26 const SimulationSettingRecord& record);
27};
28
29} // namespace designlab
30
31#endif // DESIGNLAB_SIMULATION_END_CHECKER_FACTORY_H_
シミュレーションの終了を判定するクラスを生成するクラス.
static std::unique_ptr< ISimulationEndChecker > Create(const SimulationSettingRecord &record)
シミュレーションの終了を判定するクラスを生成する.