Last change
on this file since 11194 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
833 bytes
|
Rev | Line | |
---|
[6152] | 1 | /* |
---|
| 2 | Copyright 2006 by Sean Luke |
---|
| 3 | Licensed under the Academic Free License version 3.0 |
---|
| 4 | See the file "LICENSE" for more information |
---|
| 5 | */ |
---|
| 6 | |
---|
| 7 | |
---|
| 8 | package ec.simple; |
---|
| 9 | import ec.Finisher; |
---|
| 10 | import ec.EvolutionState; |
---|
| 11 | import ec.util.Parameter; |
---|
| 12 | |
---|
| 13 | /* |
---|
| 14 | * SimpleFinisher.java |
---|
| 15 | * |
---|
| 16 | * Created: Tue Aug 10 21:09:18 1999 |
---|
| 17 | * By: Sean Luke |
---|
| 18 | */ |
---|
| 19 | |
---|
| 20 | /** |
---|
| 21 | * SimpleFinisher is a default Finisher which doesn't do anything. Most |
---|
| 22 | * application's don't need Finisher facilities, so this version will work |
---|
| 23 | * fine. |
---|
| 24 | * |
---|
| 25 | * @author Sean Luke |
---|
| 26 | * @version 1.0 |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | public class SimpleFinisher extends Finisher |
---|
| 30 | { |
---|
| 31 | |
---|
| 32 | public void setup(final EvolutionState state, final Parameter base) { } |
---|
| 33 | |
---|
| 34 | |
---|
| 35 | /** Doesn't do anything. */ |
---|
| 36 | public void finishPopulation(final EvolutionState state, final int result) |
---|
| 37 | { |
---|
| 38 | // don't care |
---|
| 39 | return; |
---|
| 40 | } |
---|
| 41 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.