Either way it probably doesn't make much of a difference. Oh, here's the unit test as well. git-svn-id: svn+ssh://svn.code.sf.net/p/cmusphinx/code/trunk/sphinxbase@7837 94700074-3cef-4d97-a70e-9c8c206c02f5
12 lines
372 B
C
12 lines
372 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
#include "logmath.h"
|
|
|
|
#define EPSILON 0.01
|
|
#define TEST_ASSERT(x) if (!(x)) { fprintf(stderr, "FAIL: %s\n", #x); exit(1); }
|
|
#define TEST_EQUAL(a,b) TEST_ASSERT((a) == (b))
|
|
#define TEST_EQUAL_FLOAT(a,b) TEST_ASSERT(fabs((a) - (b)) < EPSILON)
|
|
#define LOG_EPSILON 20
|
|
#define TEST_EQUAL_LOG(a,b) TEST_ASSERT(abs((a) - (b)) < LOG_EPSILON)
|