D. Hadka - 2015-03-19

The way it's designed currently, the "Population Size" field is only available for algorithms extending the EvolutionaryAlgorithm interface.

This means that MOEA/D and all of the JMetal algorithms (see http://www.moeaframework.org/javadoc/overview-summary.html#listOfAlgorithms) do not provide this field.

This is unfortunately a limitation of using a third-party library since the algorithms are black boxes. None of the internal fields like population size are exposed.

(For most algorithms, the population size is fixed. See the StandardAlgorithms.java and JMetalAlgorithms.java source code files to see what default values are used.)