TravisWheelerLab / NINJA

Nearly Infinite Neighbor Joining Application
MIT License
5 stars 7 forks source link

Guard test method #20

Open glesica opened 4 years ago

glesica commented 4 years ago

It looks like TEST_DIFF is used to indicate that the program is running in "test mode" (of some sort). We should therefore be able to remove the definition of testDifferenceCluster entirely by checking to see if that's defined or creating our own.

#ifdef TEST_MODE
double testDifferenceCluster(int a, int b);
#endif

And so on...