OdinAI
 All Classes Namespaces Functions Variables
SharedDefs.h
1 #ifndef ODINAI_SHARED_DEFS_H_
2 #define ODINAI_SHARED_DEFS_H_
3 
4 #include <cassert>
5 #include "MathUtil.h"
6 
7 #ifdef _DEBUG
8 //#define DEBUG_NETWORK
9 #endif
10 
11 #define NETWORK_BUFFER_SIZE 16384
12 
13 //Number of samples across a fuzzy manifold
14 #define FZ_NUM_SAMPLES_FOR_CENTROID 15
15 #define INVALID_NODE_INDEX -1
16 
17 #endif