Loading...
Searching...
No Matches
Go to the documentation of this file.
4#define MAX(a,b) ((a)>(b)?(a):(b))
8#define MIN(a,b) ((a)<(b)?(a):(b))
12#define ABS(x) ((x)>0?(x):-(x))
16#define ALMOST_EQUAL(a,b,small) (ABS((a)-(b))<small)
20#define PI 3.1415926535897932384626433832795