Fast Methods for Cosmological Simulations
FastSim serves as a tool for quick N-body simulations in modified gravity.
ccl_defs.h
Go to the documentation of this file.
1 /* @file
2  *
3  * Defines useful macros for compilation.
4  * */
5 
6 
7 /* define marks for
8  * begin and end of declaration sections of header files for C++ compatibility */
9 
10 #ifdef __cplusplus
11 
12 #define CCL_BEGIN_DECLS extern "C" {
13 #define CCL_END_DECLS }
14 
15 #else
16 
17 #define CCL_BEGIN_DECLS
18 #define CCL_END_DECLS
19 
20 #endif
21