com.github.chen0040.gp.treegp.program.ConstantSet 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.treegp.program;
/**
* Created by xschen on 28/4/2017.
* Containers for the read-only registers
*/
public class ConstantSet extends VariableSet {
private static final long serialVersionUID = -962308548161398374L;
public ConstantSet(){
super();
}
@Override
public boolean isReadOnly(){
return true;
}
@Override
public VariableSet makeCopy(){
VariableSet clone = new ConstantSet();
clone.copy(this);
return clone;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy