Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove the properties from the host constructor
[simgrid.git] / src / surf / virtual_machine.hpp
index 40395ab..4c64492 100644 (file)
@@ -58,11 +58,9 @@ public:
    *
    * @param model VMModel associated to this VM
    * @param name The name of the VM
-   * @param props Dictionary of properties associated to this VM
    * @param host The host
    */
-  VirtualMachine(simgrid::surf::HostModel *model, const char *name, xbt_dict_t props,
-            simgrid::s4u::Host *host);
+  VirtualMachine(simgrid::surf::HostModel *model, const char *name, simgrid::s4u::Host *host);
 
   /** @brief Destructor */
   ~VirtualMachine();
@@ -101,7 +99,6 @@ public:
 protected:
   e_surf_vm_state_t p_vm_state = SURF_VM_STATE_CREATED;
 
-
 public:
   boost::intrusive::list_member_hook<> vm_hook;
 };
@@ -123,7 +120,6 @@ public:
    *
    * @param name The name of the new VM
    * @param host_PM The real machine hosting the VM
-   *
    */
   virtual VirtualMachine *createVM(const char *name, sg_host_t host_PM)=0;
   void adjustWeightOfDummyCpuActions() {};