com.github.chen0040.gp.commons.Indexable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-genetic-programming Show documentation
Show all versions of java-genetic-programming Show documentation
Genetic Programming in Java, including packages on Linear Genetic Programming
package com.github.chen0040.gp.commons;
/**
* Created by xschen on 29/4/2017.
*/
public interface Indexable {
int getIndex();
void setIndex(int index);
T makeCopy();
String getName();
}