1 #ifndef COMMON_H
2 #define COMMON_H
3
4 #include <float.h>
5
6 #define Eps 1e-6
7 #define Inf FLT_MAX
8
9 #endif