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:
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 | |
---|
8 | package ec.gp.breed; |
---|
9 | import ec.gp.GPDefaults; |
---|
10 | import ec.util.Parameter; |
---|
11 | import 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 | |
---|
30 | public 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.