Corrected a small error in a test
This commit is contained in:
parent
ce7dfa80c7
commit
0ee2717559
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ public:
|
|||
void SetUp(const ::benchmark::State& state) {
|
||||
std::random_device rd { };
|
||||
std::mt19937 gen { rd() };
|
||||
std::uniform_real_distribution<float> dist { 0, 1 };
|
||||
std::uniform_real_distribution<float> dist { 0, maxJump };
|
||||
indices = std::vector<int>(state.range(0));
|
||||
leftCoeffs = std::vector<float>(state.range(0));
|
||||
rightCoeffs = std::vector<float>(state.range(0));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue