useless assert
This commit is contained in:
parent
5c7f3835f2
commit
ea17fb07ad
1 changed files with 5 additions and 2 deletions
|
|
@ -62,6 +62,9 @@ public:
|
||||||
double min = distrib.min()[i];
|
double min = distrib.min()[i];
|
||||||
double max = distrib.max()[i];
|
double max = distrib.max()[i];
|
||||||
double random = rng.uniform(min, max);
|
double random = rng.uniform(min, max);
|
||||||
|
|
||||||
|
assert( min < random && random < max);
|
||||||
|
|
||||||
solution.push_back(random);
|
solution.push_back(random);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue