gpsys
Class GeneticOperation

java.lang.Object
  |
  +--gpsys.GeneticOperation
Direct Known Subclasses:
CrossoverOperation, MutationOperation, ReproductionOperation

abstract class GeneticOperation
extends java.lang.Object

The superclass of all genetic operations. This abstract class must be subclassed to create specific genetic operators.

Version:
$Revision: 1.1 $, $Date: 2000/07/05 16:21:25 $
Author:
Adil Qureshi
Department of Computer Science,
University College London,
Gower St,
London WC1E 6BT,
UK.

Field Summary
(package private)  int parent1
          The index in the population array of the first parent involved in the operation.
 
Constructor Summary
(package private) GeneticOperation()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

parent1

int parent1
The index in the population array of the first parent involved in the operation.
Constructor Detail

GeneticOperation

GeneticOperation()