JacobiHPC/src/config.h

12 lines
195 B
C

typedef struct configuration {
int n;
float north;
float east;
float south;
float west;
float init_value;
float threshold;
} configuration;
int load_config(configuration *config);