MTF
GNNParams.h
1 #ifndef MTF_GNN_PARAMS_H
2 #define MTF_GNN_PARAMS_H
3 
4 #include "mtf/Macros/common.h"
5 
6 _MTF_BEGIN_NAMESPACE
7 
8 namespace gnn{
9  struct GNNParams{
10  int degree;
11  int max_steps;
12  int cmpt_dist_thresh;
13  bool random_start;
14  bool verbose;
15  GNNParams(int _dgree, int _max_steps,
16  int _cmpt_dist_thresh, bool _random_start,
17  bool _verbose);
18  GNNParams(const GNNParams *params = nullptr);
19  };
20 }
21 _MTF_END_NAMESPACE
22 
23 #endif
24 
Definition: GNNParams.h:9
GNN with FLANN support.
Definition: FGNN.h:12