mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-12-28 15:16:09 +01:00
16 lines
421 B
C++
16 lines
421 B
C++
|
#pragma once
|
||
|
|
||
|
#include "EngineModeExecutor.hpp"
|
||
|
|
||
|
/**
|
||
|
* @brief Generates a dataset where cycles contain a varying number of updates.
|
||
|
* The number of splitting updates varies between 2 and the number of updates.
|
||
|
*
|
||
|
* @TODO Add a method for customizing the executor's parameters
|
||
|
*/
|
||
|
class UpdateCountExecutor : public EngineModeExecutor {
|
||
|
public:
|
||
|
using EngineModeExecutor::EngineModeExecutor;
|
||
|
|
||
|
int exec() override;
|
||
|
};
|