Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add new entry in Release_Notes.
[simgrid.git] / src / kernel / lmm / fair_bottleneck.hpp
1 /* Copyright (c) 2004-2023. 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::kernel::lmm {
12
13 class XBT_PUBLIC FairBottleneck : public System {
14 public:
15   using System::System;
16
17 private:
18   void do_solve() final;
19 };
20
21 } // namespace simgrid::kernel::lmm
22
23 #endif