Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/simple/SimpleFinisher.java @ 6152

Last change on this file since 6152 was 6152, checked in by bfarka, 13 years ago

added ecj and custom statistics to communicate with the okb services #1441

File size: 833 bytes
Line 
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
8package ec.simple;
9import ec.Finisher;
10import ec.EvolutionState;
11import 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
29public 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.