X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a8b22737045851c36ca7011f4cfb207a2becec5b..3be0396ca83e510e42adc8e3eb12f4befb2f1fff:/src/surf/cpu_ti.hpp diff --git a/src/surf/cpu_ti.hpp b/src/surf/cpu_ti.hpp index c84ee89979..c1c72bb82d 100644 --- a/src/surf/cpu_ti.hpp +++ b/src/surf/cpu_ti.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2022. 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. */ @@ -11,9 +11,7 @@ #include #include -namespace simgrid { -namespace kernel { -namespace resource { +namespace simgrid::kernel::resource { /*********** * Classes * @@ -47,7 +45,7 @@ class CpuTiTmgr { DYNAMIC /*< Dynamic, have an availability file */ }; Type type_ = Type::FIXED; - double value_; /*< Percentage of cpu speed available. Value fixed between 0 and 1 */ + double value_ = 0.0; /*< Percentage of cpu speed available. Value fixed between 0 and 1 */ /* Dynamic */ double last_time_ = 0.0; /*< Integral interval last point (discrete time) */ @@ -152,8 +150,6 @@ public: CpuTiList modified_cpus_; }; -} // namespace resource -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::resource #endif /* SURF_MODEL_CPUTI_HPP_ */