Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
more cleanups in NS3
[simgrid.git] / src / surf / HostImpl.hpp
index 69d0ce6..6612221 100644 (file)
@@ -55,11 +55,8 @@ public:
   HostImpl *createHost(const char *name, NetCard *net, Cpu *cpu, xbt_dict_t props);
 
   virtual void adjustWeightOfDummyCpuActions();
-  virtual Action *executeParallelTask(int host_nb,
-      sg_host_t *host_list,
-      double *flops_amount,
-      double *bytes_amount,
-      double rate);
+  virtual Action *executeParallelTask(int host_nb, sg_host_t *host_list,
+      double *flops_amount, double *bytes_amount, double rate);
 
   bool next_occuring_event_isIdempotent() override {return true;}
 };
@@ -88,8 +85,7 @@ public:
    * @param storage The Storage associated to this Host
    * @param cpu The Cpu associated to this Host
    */
-  HostImpl(HostModel *model, const char *name, xbt_dict_t props,
-          xbt_dynar_t storage, Cpu *cpu);
+  HostImpl(HostModel *model, const char *name, xbt_dict_t props, xbt_dynar_t storage, Cpu *cpu);
 
   /**
    * @brief Host constructor
@@ -115,8 +111,8 @@ public:
   }
   void attach(simgrid::s4u::Host* host);
 
-  bool isOn() override;
-  bool isOff() override;
+  bool isOn() const override;
+  bool isOff() const override;
   void turnOn() override;
   void turnOff() override;