You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
doubletestDifferenceCluster(int a, int b);
#endif
And so on...
The text was updated successfully, but these errors were encountered:
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 oftestDifferenceCluster
entirely by checking to see if that's defined or creating our own.And so on...
The text was updated successfully, but these errors were encountered: