reduce solver random matrix size
Some checks failed
Linux arm64 / Build (push) Failing after 38m45s

This commit is contained in:
2024-05-23 14:34:22 +02:00
parent 9a5b99a79d
commit e784a7b471

View File

@@ -10,7 +10,7 @@
namespace fs = std::filesystem; namespace fs = std::filesystem;
const static int EXECUTION_COUNT = 10000; const static int EXECUTION_COUNT = 10000;
static constexpr int MATRIX_MAX_SIZE = 7; static constexpr int MATRIX_MAX_SIZE = 5;
static int GetRandomSize() { static int GetRandomSize() {
return rand() % MATRIX_MAX_SIZE + 1; return rand() % MATRIX_MAX_SIZE + 1;