mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-12-28 15:16:09 +01:00
17 lines
439 B
C++
17 lines
439 B
C++
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "EngineModeExecutor.hpp"
|
||
|
|
||
|
/**
|
||
|
* @brief Generates a dataset with matrices of increasing size and increasing number of splits.
|
||
|
* The total number of updates is fixed, and the number of splits is increasing.
|
||
|
*
|
||
|
* @TODO Add a method for customizing the executor's parameters
|
||
|
*/
|
||
|
class MatrixSizeExecutor : public EngineModeExecutor {
|
||
|
public:
|
||
|
using EngineModeExecutor::EngineModeExecutor;
|
||
|
|
||
|
int exec() override;
|
||
|
};
|