use better test function names to avoid conflict

This commit is contained in:
Krishna Vedala
2020-06-26 10:37:56 -04:00
parent dcd0d6b478
commit 052c3fbca8

View File

@@ -355,7 +355,7 @@ std::vector<float> predict_OLS_regressor(std::vector<std::vector<T>> const &X,
} }
/** Self test checks */ /** Self test checks */
void test() { void ols_test() {
int F = 3, N = 5; int F = 3, N = 5;
/* test function = x^2 -5 */ /* test function = x^2 -5 */
@@ -408,7 +408,7 @@ void test() {
* main function * main function
*/ */
int main() { int main() {
test(); ols_test();
size_t N, F; size_t N, F;