pmlpp/platform/main.cpp

21 lines
305 B
C++
Raw Normal View History

2024-01-25 12:49:59 +01:00
2024-01-25 16:33:10 +01:00
#include "sfw.h"
//#include "test/mlpp_tests.h"
//#include "test/mlpp_matrix_tests.h"
2024-01-25 12:49:59 +01:00
int main() {
2024-01-25 16:33:10 +01:00
SFWCore::setup();
//Ref<MLPPTests> tests;
//tests.instance();
//tests->test_statistics();
//tests->test_multivariate_linear_regression_gradient_descent(true);
SFWCore::cleanup();
2024-01-25 12:49:59 +01:00
2024-01-25 16:33:10 +01:00
return 0;
2024-01-25 12:49:59 +01:00
}