* @param theSubstrate
* The substrate ID.
* @param populationSize
*/
public NEATPopulation(final Substrate theSubstrate, final int populationSize) {
super(populationSize, new FactorHyperNEATGenome());
this.substrate = theSubstrate;
this.inputCount = 6;
this.outputCount = 2;
HyperNEATGenome.buildCPPNActivationFunctions(this.activationFunctions);
}