You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have noticed BasicNetwork has two reset methods:
public void reset() {
getRandomizer().randomize(this);
}
And one with a seed variable:
public void reset(final int seed) {
Randomizer randomizer = getRandomizer();
randomizer.randomize(this);
}
However, seed variable is not used and they do the same thing. It does not seem right. It seems like the second method is supposed to initialise randomiser with given weights.
The text was updated successfully, but these errors were encountered:
I have noticed BasicNetwork has two reset methods:
And one with a
seed
variable:However,
seed
variable is not used and they do the same thing. It does not seem right. It seems like the second method is supposed to initialise randomiser with given weights.The text was updated successfully, but these errors were encountered: