-
Could you clarify why you made `Problem`, `Algorithm`, `Operator` and many others extend `Serializable`?
While I could understand that you want some data to be stored and retrieved, you basically do …
-
Considering that you are revising the conceptual modeling of your framework, I come here with an idea about how to model measurements that you could exploit in an experiment or simply as a way to get …
-
We should have a proposal by Tuesday. During class we talked about adding novel heuristics to PSO. I think it's a great idea. We should also consider what models we want to choose. I suggest everythin…
-
First version of the core class diagram of the new jMetal release:
![architecturecoreclassdiagram](https://cloud.githubusercontent.com/assets/1889196/6389177/fd244d96-bda1-11e4-9036-0dea4a1ee632.png)…
-
The feature I like the least by far in jMetal is the `jmetal.core.Solution` class. The point is that many algorithms require them to have particular fields. For example, NSGA-II is based on solution r…
-
In jMetal we have a factory for creating problems:
``` java
public class ProblemFactory {
public Problem getProblem(String name, Object[] params) throws JMetalException {
// Params are the argu…
-
I was looking at some implementations of the `GenericIntSolutionType`, and I noticed that you have the `IntRealSolutionType` which has a variable amount of `Int` variables plus a variable amount of `R…