1 #ifndef PROBABILISTICPOINT_H
2 #define PROBABILISTICPOINT_H
7 #include "WeightedPoint.hpp"
24 std::vector<WeightedPoint>::const_iterator cbegin()
const;
25 std::vector<WeightedPoint>::const_iterator cend()
const;
26 typedef std::vector<WeightedPoint>::const_iterator citerator;
29 void setWeight(
double weight);
30 unsigned int getSizeOfDistribution()
const;
31 double getWeight()
const;
32 double getRealizationProbability()
const;
35 std::vector<WeightedPoint> distribution;
37 double realizationProbability;