20 lines
410 B
C++
20 lines
410 B
C++
|
|
#pragma once
|
|
|
|
#include "../rng.h"
|
|
#include "./rngtest.h"
|
|
#include "../math/incomplete_gamma.h"
|
|
#include "../math/matrix.h"
|
|
|
|
|
|
|
|
namespace splat {
|
|
|
|
class binary_matrix_test : public RNGTEST {
|
|
public:
|
|
binary_matrix_test(std::vector<std::bitset<32>> &testData);
|
|
std::string getName() override;
|
|
double runTest(std::vector<std::bitset<32>> &data) override;
|
|
};
|
|
}
|