Removed new things from MLPPHypothesisTestingOld.

This commit is contained in:
Relintai 2023-02-13 19:24:39 +01:00
parent 6ee2295535
commit 1ccdde4bf3

View File

@ -9,15 +9,12 @@
// //
#include "core/math/math_defs.h" #include "core/math/math_defs.h"
#include "core/int_types.h"
#include "core/object/reference.h"
#include <tuple> #include <tuple>
#include <vector> #include <vector>
class MLPPHypothesisTestingOld : public Reference { class MLPPHypothesisTestingOld {
GDCLASS(MLPPHypothesisTestingOld, Reference);
public: public:
std::tuple<bool, real_t> chiSquareTest(std::vector<real_t> observed, std::vector<real_t> expected); std::tuple<bool, real_t> chiSquareTest(std::vector<real_t> observed, std::vector<real_t> expected);