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

ec.Singleton Maven / Gradle / Ivy

Go to download

ECJ, A Java-based Evolutionary Computation Research System. ECJ is a research EC system written in Java. It was designed to be highly flexible, with nearly all classes (and all of their settings) dynamically determined at runtime by a user-provided parameter file. All structures in the system are arranged to be easily modifiable. Even so, the system was designed with an eye toward efficiency. ECJ is developed at George Mason University's ECLab Evolutionary Computation Laboratory. The software has nothing to do with its initials' namesake, Evolutionary Computation Journal. ECJ's sister project is MASON, a multi-agent simulation system which dovetails with ECJ nicely.

The newest version!
/*
  Copyright 2006 by Sean Luke
  Licensed under the Academic Free License version 3.0
  See the file "LICENSE" for more information
*/


package ec;

/* 
 * Singleton.java
 * 
 * Created: Wed Oct 13 14:57:00 1999
 * By: Sean Luke
 */

/**
 * A Singleton is a class for which there will be only one instance
 * in the entire course of a run, and which will exist for pretty
 * much the entire run.  Singletons are set up using setup(...)
 * when they are first created.
 *
 * @author Sean Luke
 * @version 1.0 
 */

public interface Singleton extends Setup
    {
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy