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

rinde.ecj.DefaultResult Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
/**
 * 
 */
package rinde.ecj;

import rinde.jppf.GPComputationResult;

/**
 * @author Rinde van Lon 
 * 
 */
public class DefaultResult implements GPComputationResult {

	protected final float fitness;
	protected final String taskDataId;

	public DefaultResult(float fit, String id) {
		fitness = fit;
		taskDataId = id;
	}

	public float getFitness() {
		return fitness;
	}

	public String getTaskDataId() {
		return taskDataId;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy