All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.uma.jmetal.experiment.AlgorithmBuilder2 Maven / Gradle / Ivy

There is a newer version: 5.9
Show newest version
package org.uma.jmetal.experiment;

import org.uma.jmetal.algorithm.Algorithm;
import org.uma.jmetal.problem.Problem;
import org.uma.jmetal.solution.Solution;

/**
 * Created by ajnebro on 3/1/15.
 */
public interface AlgorithmBuilder2, P extends Problem> {
  public Algorithm build(P problem) ;
  public P getProblem() ;
}