Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7c5559077725f50aed686c846dd982c01ac0264f
[simgrid.git] / src / kernel / lmm / fair_bottleneck.hpp
1 /* Copyright (c) 2004-2022. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_KERNEL_LMM_FAIR_BOTTLENECK_HPP
7 #define SIMGRID_KERNEL_LMM_FAIR_BOTTLENECK_HPP
8
9 #include "src/kernel/lmm/System.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace lmm {
14
15 class XBT_PUBLIC FairBottleneck : public System {
16 public:
17   using System::System;
18
19 private:
20   void do_solve() final;
21 };
22
23 } // namespace lmm
24 } // namespace kernel
25 } // namespace simgrid
26
27 #endif