ref #39 #40 moved all stuff left in KLib into Indoor. We are now able to perform localization without the need of KLib. Only K::Gnuplot is needed for drawing, but this will be separated into an own project in the future
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "Random.h"
|
||||
#include "random/RandomGenerator.h"
|
||||
#include "../Assertions.h"
|
||||
|
||||
/**
|
||||
@@ -41,13 +41,13 @@ private:
|
||||
std::vector<Entry> elements;
|
||||
|
||||
/** the used random number generator */
|
||||
RandomGenerator& gen;
|
||||
Random::RandomGenerator& gen;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
/** default random generator. fallback */
|
||||
RandomGenerator defRndGen;
|
||||
Random::RandomGenerator defRndGen;
|
||||
|
||||
|
||||
public:
|
||||
@@ -63,7 +63,7 @@ public:
|
||||
}
|
||||
|
||||
/** ctor with custom RandomNumberGenerator */
|
||||
DrawList(RandomGenerator& gen) : cumProbability(0), gen(gen) {
|
||||
DrawList(Random::RandomGenerator& gen) : cumProbability(0), gen(gen) {
|
||||
;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user