edu.ksu.cis.kdd.ga
Interface Constraint


public interface Constraint

Basically a constraint to reject or accept a newly created chromosome c. After GA operations (such as crossover or mutation), the newly generated chromosome may be invalid. If it can be invalid, then it's the implementor of Constraint interface who does the job.

Author:
Roby Joehanes

Method Summary
 boolean isAccepted(Chromosome c)
           
 

Method Detail

isAccepted

public boolean isAccepted(Chromosome c)