/**
* @see de.cesr.lara.components.util.LaraRandom#createNormal(double, double)
*/
public Normal createNormal(double mean, double std) {
if (isDebugEnabled()) {
distributions.put(NORMAL_DEFAULT, new UNormalController(mean, std, generators.get(null)));
} else {
distributions.put(NORMAL_DEFAULT, new Normal(mean, std, generators.get(null)));
}
// <- LOGGING