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

com.github.chen0040.gp.treegp.program.ConstantSet Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy