ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_aux.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_AUX_H
9 #define SCAMAC_AUX_H
10 
11 #include "scamac_inttypes.h"
12 
13 #include <stdbool.h>
14 #include <inttypes.h>
15 
16 #ifndef ABS
17 #define ABS(x) (((x) < 0) ? -(x) : (x))
18 #endif
19 #ifndef MAX
20 #define MAX(x,y) (((x) > (y)) ? (x) : (y))
21 #endif
22 #ifndef MIN
23 #define MIN(x,y) (((x) < (y)) ? (x) : (y))
24 #endif
25 #ifndef MAX3
26 #define MAX3(x,y,z) (((x) > MAX(y,z)) ? (x) : MAX(y,z))
27 #endif
28 #ifndef MIN3
29 #define MIN3(x,y,z) (((x) < MIN(y,z)) ? (x) : MIN(y,z))
30 #endif
31 
32 // return a number larger than n
33 int scamac_increase_n_somewhat(int n);
34 
39 void scamac_print_int64_nicely(int64_t i, char * str);
40 
44 void scamac_print_int64_abbr(int64_t i, char * str);
45 
46 bool scamac_read_int64_nicely(const char * str, int64_t * res);
47 
48 #endif /* SCAMAC_AUX_H */
ScaMaC index/integer types.
void scamac_print_int64_abbr(int64_t i, char *str)
void scamac_print_int64_nicely(int64_t i, char *str)