KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jgap > distr > DistributedGenotype


1 /*
2  * This file is part of JGAP.
3  *
4  * JGAP offers a dual license model containing the LGPL as well as the MPL.
5  *
6  * For licencing information please see the file license.txt included with JGAP
7  * or have a look at the top of class org.jgap.Chromosome which representatively
8  * includes the JGAP license policy applicable for any file delivered with JGAP.
9  */

10 package org.jgap.distr;
11
12 import org.jgap.*;
13
14 /**
15  * Genotype that is running on one of many servers computing a population.
16  * This type of Genotype knows his companions (other servers to contact for
17  * distributed calculating of populations).
18  *
19  * @author Klaus Meffert
20  * @since 2.0
21  */

22 public class DistributedGenotype
23     extends Genotype {
24   /** String containing the CVS revision. Read out via reflection!*/
25   private static final String JavaDoc CVS_REVISION = "$Revision: 1.7 $";
26
27   public DistributedGenotype(Configuration a_activeConfiguration,
28                              Population a_population)
29       throws InvalidConfigurationException {
30     super(a_activeConfiguration, a_population);
31   }
32
33 /**@todo implement island model*/
34 }
35
Popular Tags