Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Update copyright lines for 2022.
[simgrid.git] / src / surf / host_clm03.hpp
index cec2349..43aa5e9 100644 (file)
@@ -1,38 +1,31 @@
-/* Copyright (c) 2013-2015. The SimGrid Team.
- * All rights reserved.                                                     */
+/* Copyright (c) 2013-2022. The SimGrid Team. All rights reserved.          */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
-#include <xbt/base.h>
-
-#include "StorageImpl.hpp"
-#include "cpu_interface.hpp"
-#include "network_interface.hpp"
 #include "src/surf/HostImpl.hpp"
 
-#ifndef SURF_HOST_CLM03_HPP_
-#define SURF_HOST_CLM03_HPP_
+#ifndef HOST_CLM03_HPP_
+#define HOST_CLM03_HPP_
 
 /***********
  * Classes *
  ***********/
 
 namespace simgrid {
-namespace surf {
-
-class XBT_PRIVATE HostCLM03Model;
-
-/*********
- * Model *
- *********/
+namespace kernel {
+namespace resource {
 
-class HostCLM03Model : public HostModel {
+class XBT_PRIVATE HostCLM03Model : public HostModel {
 public:
-  double next_occuring_event(double now) override;
+  using HostModel::HostModel;
+  double next_occurring_event(double now) override;
   void update_actions_state(double now, double delta) override;
+  Action* execute_parallel(const std::vector<s4u::Host*>& host_list, const double* flops_amount,
+                           const double* bytes_amount, double rate) override;
 };
-}
-}
+} // namespace resource
+} // namespace kernel
+} // namespace simgrid
 
-#endif /* SURF_HOST_CLM03_HPP_ */
+#endif /* HOST_CLM03_HPP_ */