Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/gp/koza/GPKozaDefaults.java @ 12912

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

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

File size: 840 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.gp.koza;
9import ec.gp.GPDefaults;
10import ec.util.Parameter;
11import ec.*;
12
13/*
14 * GPKozaDefaults.java
15 *
16 * Created: Tue Oct 12 17:44:47 1999
17 * By: Sean Luke
18 */
19
20/**
21 * A static class that returns the base for "default values" which Koza-style
22 * operators use, rather than making the user specify them all on a per-
23 * species basis.
24 *
25 * @author Sean Luke
26 * @version 1.0
27 */
28
29public final class GPKozaDefaults implements DefaultsForm
30    {
31    public static final String P_KOZA = "koza";
32
33    /** Returns the default base, which is built off of the GPDefaults base. */
34    public static final Parameter base()
35        {
36        return GPDefaults.base().push(P_KOZA);
37        }
38    }
Note: See TracBrowser for help on using the repository browser.