X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08e7455d67920bbd7a87f440d00f2c1e071314a0..3fafdab4bb94b48cb16c80690408a18f472e202b:/src/kernel/resource/profile/StochasticDatedValue.hpp diff --git a/src/kernel/resource/profile/StochasticDatedValue.hpp b/src/kernel/resource/profile/StochasticDatedValue.hpp index ff0fa0edfc..aaa9978d9c 100644 --- a/src/kernel/resource/profile/StochasticDatedValue.hpp +++ b/src/kernel/resource/profile/StochasticDatedValue.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. */ @@ -7,12 +7,10 @@ #define SIMGRID_KERNEL_PROFILE_STOCHASTICDATEDVALUE #include "simgrid/forward.h" -#include "src/kernel/resource/profile/DatedValue.hpp" +#include "simgrid/kernel/ProfileBuilder.hpp" #include -namespace simgrid { -namespace kernel { -namespace profile { +namespace simgrid::kernel::profile { enum class Distribution { EXP, NORM, UNIF, DET }; @@ -38,8 +36,8 @@ private: static double draw(Distribution law, std::vector params); }; -} // namespace profile -} // namespace kernel -} // namespace simgrid +} // namespace simgrid::kernel::profile + +std::vector trace2selist( const char* c_str ); #endif