summaryrefslogtreecommitdiff
path: root/Simulator/include/simulation/schedulers/Scheduler.h
diff options
context:
space:
mode:
Diffstat (limited to 'Simulator/include/simulation/schedulers/Scheduler.h')
-rw-r--r--Simulator/include/simulation/schedulers/Scheduler.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/Simulator/include/simulation/schedulers/Scheduler.h b/Simulator/include/simulation/schedulers/Scheduler.h
deleted file mode 100644
index 69e20d01..00000000
--- a/Simulator/include/simulation/schedulers/Scheduler.h
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-#include "modeling/machine/Machine.h"
-
-#include <vector>
-
-namespace Simulation
-{
- /*
- Provides a strategy for load balancing.
- */
- class Scheduler
- {
- public:
- virtual ~Scheduler()
- {
-
- }
-
- /*
- Divides the workloads over the given machines.
- */
- virtual void schedule(std::vector<std::reference_wrapper<Modeling::Machine>>& machines, std::vector<Workload*> workloads) = 0;
- };
-}