Uses of Interface
org.dbe.eve.Solution

Packages that use Solution
org.dbe.eve.fff This package provides the interfaces and classes for the FitnessFunctionFramework. 
org.dbe.eve.fff.impl This package provides a default implementation of a FitnessFunction for the default implementation of the GA. 
org.dbe.eve.ga This package provides the interfaces and classes for adding a Genetic Algorithm to the Habitat. 
org.dbe.eve.ga.impl This package provides a default implementation of a Genetic Algorithm. 
 

Uses of Solution in org.dbe.eve.fff
 

Methods in org.dbe.eve.fff with parameters of type Solution
 Fitness FitnessFunction.evaluate(Solution solution)
          Evaluate the fitness function with the indicated solution.
 

Uses of Solution in org.dbe.eve.fff.impl
 

Methods in org.dbe.eve.fff.impl with parameters of type Solution
 Fitness FFSimpleImplementation.evaluate(Solution solution)
           
 Fitness DefaultAgregator.evaluate(Solution solution)
           
 Fitness AnotherFFImpl.evaluate(Solution solution)
           
 

Uses of Solution in org.dbe.eve.ga
 

Subinterfaces of Solution in org.dbe.eve.ga
 interface PrivateSolution
           
 

Uses of Solution in org.dbe.eve.ga.impl
 

Classes in org.dbe.eve.ga.impl that implement Solution
 class SolutionImpl
          This class represent one simple solution for a bussiness model.
 

Methods in org.dbe.eve.ga.impl that return Solution
 Solution SimplePopulation.getIndividual(int id)
           
 

Methods in org.dbe.eve.ga.impl with parameters of type Solution
 void SimplePopulation.addIndividual(Solution solution)
           
 void SimplePopulation.changeIndividual(int id, Solution solution)