GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
graph_search_const.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_GRAPH_SEARCH_CONST_H_
9#define DESIGNLAB_GRAPH_SEARCH_CONST_H_
10
11
12namespace designlab
13{
14
20{
21public:
22 // 実体が生成できないようにコンストラクタを privateにする
23 GraphSearchConst() = default;
27
28
29 static const int kMaxDepth;
30};
31
32} // namespace designlab
33
34#endif // DESIGNLAB_GRAPH_SEARCH_CONST_H_
グラフ探索の定数をまとめたクラス. 先行研究のマクロをまとめたもの.
GraphSearchConst(const GraphSearchConst &)=default
static const int kMaxDepth
グラフ探索の最大深さ.
GraphSearchConst(GraphSearchConst &&)=default
GraphSearchConst & operator=(const GraphSearchConst &)=default