Scheduler
boundedRandomDistribution.h
Go to the documentation of this file.
1 
10 #ifndef BOUNDED_RANDOM_DISTRIBUTION_H
11 #define BOUNDED_RANDOM_DISTRIBUTION_H
12 
13 namespace Utils
14 {
15 
19 {
20 public:
24  virtual double draw()=0;
25 };
26 
27 }
28 
29 
30 #endif
virtual double draw()=0
returns a number from 0 to 1 following the underlying probability distribution
Definition: context.h:16