Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
781384d1514e964363c92459a2fbb6a2cb28c77a
[simgrid.git] / src / surf / host_clm03.hpp
1 /* Copyright (c) 2013-2019. 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 #include "src/surf/HostImpl.hpp"
7
8 #ifndef SURF_HOST_CLM03_HPP_
9 #define SURF_HOST_CLM03_HPP_
10
11 /***********
12  * Classes *
13  ***********/
14
15 namespace simgrid {
16 namespace surf {
17
18 class XBT_PRIVATE HostCLM03Model : public HostModel {
19 public:
20   HostCLM03Model();
21   double next_occuring_event(double now) override;
22   void update_actions_state(double now, double delta) override;
23 };
24 }
25 }
26
27 #endif /* SURF_HOST_CLM03_HPP_ */