Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/gp/GPDefaults.java @ 12700

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

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

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