Package org.opt4j.tutorial

The tutorial provides three examples for user-defined problems, one example for an Optimizer implementation, and one example for a new Operator.

See:
          Description

Class Summary
TutorialModule  
 

Package org.opt4j.tutorial Description

The tutorial provides three examples for user-defined problems, one example for an Optimizer implementation, and one example for a new Operator.

The org.opt4j.tutorial.helloworld example is a simple problem which shows the implementation of the Decoder, Evaluator and Creator interfaces which is the minimum requirement for own optimization problems.

The org.opt4j.tutorial.salesman example implements the Traveling Salesman Problem. A problem-specific GUI is added.

The org.opt4j.tutorial.minones example is a simple problem which uses SAT decoding to hand infeasible individuals.

The org.opt4j.tutorial.optimizer example shows the implementation of a simple optimizer which uses the Mutate operator.

The org.opt4j.tutorial.operator example shows how to add own Operators for the modification of Genotypes.