Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKBJavaConnector/ECJClient/src/ec/gp/breed/GPBreedDefaults.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: 858 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.breed;
9import ec.gp.GPDefaults;
10import ec.util.Parameter;
11import ec.*;
12
13/*
14 * GPBreedDefaults.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 various
22 * GP breeding
23 * operators use, rather than making the user specify them all on a per-
24 * species basis.
25 *
26 * @author Sean Luke
27 * @version 1.0
28 */
29
30public final class GPBreedDefaults implements DefaultsForm
31    {
32    public static final String P_BREED = "breed";
33
34    /** Returns the default base, which is built off of the GPDefaults base. */
35    public static final Parameter base()
36        {
37        return GPDefaults.base().push(P_BREED);
38        }
39    }
Note: See TracBrowser for help on using the repository browser.