]> AND Public Git Repository - simgrid.git/blobdiff - src/kernel/resource/profile/StochasticDatedValue.cpp
Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / kernel / resource / profile / StochasticDatedValue.cpp
index 6830b75bc836753d5af2eb034e43a2b19b731ac5..fa3248ffe8424e554ee5f100dbd84e9afaa69e4a 100644 (file)
@@ -27,15 +27,18 @@ double StochasticDatedValue::draw(Distribution law, std::vector<double> params)
       xbt_die("Unimplemented distribution");
   }
 }
-double StochasticDatedValue::get_value()
+
+double StochasticDatedValue::get_value() const
 {
   return draw(value_law, value_params);
 }
-double StochasticDatedValue::get_date()
+
+double StochasticDatedValue::get_date() const
 {
   return draw(date_law, date_params);
 }
-DatedValue StochasticDatedValue::get_datedvalue()
+
+DatedValue StochasticDatedValue::get_datedvalue() const
 {
   DatedValue event;
   event.date_  = get_date();