Simpact Cyan
Population based event driven simulation using mNRM
populationutil.h
1 #ifndef POPULATIONUTIL_H
2 
3 #define POPULATIONUTIL_H
4 
5 #include "booltype.h"
6 #include "populationinterfaces.h"
7 
8 class PopulationUtil
9 {
10 public:
11  static bool_t selectAlgorithmAndState(const std::string &algo, GslRandomNumberGenerator &rng, bool parallel,
13 };
14 
15 #endif // POPULATIONUTIL_H
Type to return true/false with error description.
Definition: booltype.h:25
This class allows you to generate random numbers, and uses the GNU Scientific Library for this...
Definition: gslrandomnumbergenerator.h:16
An interface for a population based mNRM algorithm.
Definition: populationinterfaces.h:101
Interface for a simulation state for the population-based algorithm, specifying member functions that...
Definition: populationinterfaces.h:26