UCFD_SPARSE  v1.1
Documentation
Loading...
Searching...
No Matches
config.h
Go to the documentation of this file.
1
6#ifndef CONFIG
7#define CONFIG
8#include <stdint.h>
9#include <float.h>
10#include <inttypes.h>
11
12// TODO : Auto-generation by Makefile
13
17#if defined(UCFD_INT64)
18 typedef int64_t UCFD_INT;
19#else
20 typedef int32_t UCFD_INT;
21#endif
22
26#if defined(UCFD_FLOAT32)
27 typedef float UCFD_FLOAT;
28#else
29 typedef double UCFD_FLOAT;
30#endif
31
36// #define NVARS 7
37// #define NFVARS 5
38// #define NTURBVARS 2
39// #define NDIMS 3
40// #define BLOCK 5
41
42#endif
int32_t UCFD_INT
Definition: config.h:20
double UCFD_FLOAT
Definition: config.h:29