X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1747902010b7fc57b15c2e88473c5bb118d362d1..5ed37babb2fa9097abe82df299c0aa259ed84d5a:/include/simgrid/kernel/resource/Model.hpp diff --git a/include/simgrid/kernel/resource/Model.hpp b/include/simgrid/kernel/resource/Model.hpp index 72617af98f..c5c09e4050 100644 --- a/include/simgrid/kernel/resource/Model.hpp +++ b/include/simgrid/kernel/resource/Model.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2004-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2004-2023. 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. */ @@ -20,16 +20,6 @@ namespace resource { */ class XBT_PUBLIC Model { public: - /** @brief Possible model types */ - enum class Type { - HOST, /**< Host models: see surf_host_model_description for more details */ - NETWORK, /**< Network models: see surf_network_model_description for more details */ - CPU_PM, /**< CPU model for physical machines: see surf_cpu_model_description for more details */ - CPU_VM, /**< CPU model for virtual machines: see surf_cpu_model_description for more details */ - DISK, /**< Disk models: see surf_disk_model_description for more details */ - VM /**< VM model */ - }; - /** @brief Possible update mechanisms */ enum class UpdateAlgo { FULL, /**< Full update mechanism: the remaining time of every action is recomputed at each step */ @@ -38,14 +28,14 @@ public: gets recomputed anyway. In that case, you'd better not try to be cleaver with lazy and go for a simple full update. */ }; - - explicit Model(Model::UpdateAlgo algo); + explicit Model(const std::string& name); Model(const Model&) = delete; Model& operator=(const Model&) = delete; virtual ~Model(); bool is_update_lazy() const { return update_algorithm_ == UpdateAlgo::LAZY; } + Model* set_update_algorithm(UpdateAlgo algo); /** @brief Get the set of [actions](@ref Action) in *inited* state */ Action::StateSet* get_inited_action_set() { return &inited_action_set_; } @@ -71,12 +61,6 @@ public: /** @brief Set the maxmin system of the current Model */ void set_maxmin_system(lmm::System* system); - /** @brief Get the update algorithm of the current Model */ - XBT_ATTRIB_DEPRECATED_v329("Please use is_update_lazy()") UpdateAlgo get_update_algorithm() const - { - return update_algorithm_; - } - /** @brief Get Action heap */ ActionHeap& get_action_heap() { return action_heap_; } @@ -90,21 +74,6 @@ public: virtual double next_occurring_event_lazy(double now); virtual double next_occurring_event_full(double now); - XBT_ATTRIB_DEPRECATED_v329("Please use next_occurring_event()") virtual double next_occuring_event(double now) final - { - return next_occurring_event(now); - } - XBT_ATTRIB_DEPRECATED_v329("Please use next_occurring_event_lazy()") virtual double next_occuring_event_lazy( - double now) final - { - return next_occurring_event_lazy(now); - } - XBT_ATTRIB_DEPRECATED_v329("Please use next_occurring_event_full()") virtual double next_occuring_event_full( - double now) final - { - return next_occurring_event_full(now); - } - private: Action* extract_action(Action::StateSet* list); @@ -129,20 +98,18 @@ public: */ virtual bool next_occurring_event_is_idempotent() { return true; } - XBT_ATTRIB_DEPRECATED_v329( - "Please use next_occurring_event_is_idempotent()") virtual bool next_occuring_event_is_idempotent() final - { - return next_occurring_event_is_idempotent(); - } + /** @brief Gets the model name */ + std::string get_name() const { return name_; } private: + UpdateAlgo update_algorithm_ = UpdateAlgo::FULL; std::unique_ptr maxmin_system_; - const UpdateAlgo update_algorithm_; Action::StateSet inited_action_set_; /**< Created not started */ Action::StateSet started_action_set_; /**< Started not done */ Action::StateSet failed_action_set_; /**< Done with failure */ Action::StateSet finished_action_set_; /**< Done successful */ Action::StateSet ignored_action_set_; /**< not considered (failure detectors?) */ + const std::string name_; /**< Model name */ ActionHeap action_heap_; };