X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/446069ad8e6d4580649af853f64ebbd259737bbe..390ee57ed79bf7577c2bce6df6a25aba57ff476e:/src/surf/cpu_interface.hpp diff --git a/src/surf/cpu_interface.hpp b/src/surf/cpu_interface.hpp index 5823a71414..daae9a4f4a 100644 --- a/src/surf/cpu_interface.hpp +++ b/src/surf/cpu_interface.hpp @@ -37,9 +37,6 @@ class CpuAction; */ XBT_PUBLIC_CLASS CpuModel : public Model { public: - CpuModel() : Model() {}; - ~CpuModel() override; - /** * @brief Create a Cpu * @@ -51,7 +48,6 @@ public: void updateActionsStateLazy(double now, double delta) override; void updateActionsStateFull(double now, double delta) override; - bool next_occuring_event_isIdempotent() override; }; /************ @@ -105,7 +101,7 @@ public: virtual simgrid::surf::Action *sleep(double duration)=0; /** @brief Get the amount of cores */ - virtual int getCoreCount(); + virtual int coreCount(); /** @brief Get the speed, accounting for the trace load and provided process load instead of the real current one */ virtual double getSpeed(double load);