lfptest.h revision 290001
1#ifndef NTP_TESTS_LFPTEST_H
2#define NTP_TESTS_LFPTEST_H
3
4#include "config.h"
5#include "ntp_fp.h"
6
7
8static const int32 HALF = -2147483647L - 1L;
9static const int32 HALF_PROMILLE_UP = 2147484; // slightly more than 0.0005
10static const int32 HALF_PROMILLE_DOWN = 2147483; // slightly less than 0.0005
11static const int32 QUARTER = 1073741824L;
12static const int32 QUARTER_PROMILLE_APPRX = 1073742L;
13
14int IsEqual(const l_fp expected, const l_fp actual);
15
16#endif
17