Skip to content
Snippets Groups Projects
Commit 86c1ad39 authored by Joseph Mirabel's avatar Joseph Mirabel Committed by Joseph Mirabel
Browse files

Add DiscreteDistribution::values()

parent 5a9c7b1f
No related branches found
No related tags found
No related merge requests found
...@@ -107,6 +107,15 @@ namespace hpp { ...@@ -107,6 +107,15 @@ namespace hpp {
return proba; return proba;
} }
/// Return the values.
std::vector < Value_t > values () const {
if (values_.empty ()) return std::vector < Value_t > (0);
std::vector < Value_t > v (values_.size());
for (size_t i = 0; i < values_.size (); i++)
v[i] = values_[i].second;
return v;
}
/// Return the total weight. /// Return the total weight.
Weight_t totalWeight () const { Weight_t totalWeight () const {
if (cumulative_weights_.empty ()) return 0; if (cumulative_weights_.empty ()) return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment