#include "./binary_matrix.h" #include "./rngtest.h" namespace splat { binary_matrix_test::binary_matrix_test(std::vector> &testData) : RNGTEST(testData){ testPValue = runTest(data); testPassed = testPValue > 0.01; } std::string binary_matrix_test::getName() { return "Binary Matrix Rank Test"; } // We will use matrices of size 32x32 as recommended double binary_matrix_test::runTest(std::vector> &data) { int num_matrices = data.size() / 32; } }