X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/bfdba6424c0645e31cc60ee166e388cf8f283c3b..67f36ac7e6410496964e1c3c5104af9920438131:/src/surf/ptask_L07.hpp diff --git a/src/surf/ptask_L07.hpp b/src/surf/ptask_L07.hpp index 585e0a8359..a611d4771e 100644 --- a/src/surf/ptask_L07.hpp +++ b/src/surf/ptask_L07.hpp @@ -51,7 +51,7 @@ public: ~CpuL07Model(); Cpu *createCpu(simgrid::s4u::Host *host, std::vector *speedPerPstate, int core) override; - HostL07Model *p_hostModel; + HostL07Model *hostModel_; }; class NetworkL07Model : public NetworkModel { @@ -65,7 +65,7 @@ public: Action *communicate(kernel::routing::NetCard *src, kernel::routing::NetCard *dst, double size, double rate) override; bool next_occuring_event_isIdempotent() override {return true;} - HostL07Model *p_hostModel; + HostL07Model *hostModel_; }; /************ @@ -111,11 +111,11 @@ public: int unref() override; - std::vector * p_netcardList = new std::vector(); - double *p_computationAmount; - double *p_communicationAmount; - double m_latency; - double m_rate; + std::vector * netcardList_ = new std::vector(); + double *computationAmount_; + double *communicationAmount_; + double latency_; + double rate_; }; }