vocabtree  0.0.1
config.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 /// This header is automatically generated. Do not modify.
4 
5 
6 #define ENABLE_MPI 0
7 #define ENABLE_FASTCLUSTER 0
8 #define ENABLE_MULTITHREADING 1
9 
10 // needed for sublime clang to work
11 #if ENABLE_MULTITHREADING
12  #ifdef __clang__
13  #if __has_include(<omp.h>)
14  #define ENABLE_OPENMP 1
15  #else
16  #define ENABLE_OPENMP 0
17  #endif
18  #else
19  #define ENABLE_OPENMP 1
20  #endif
21 #else
22  #define ENABLE_OPENMP 0
23 #endif