Last change
on this file since 9449 was
6152,
checked in by bfarka, 14 years ago
|
added ecj and custom statistics to communicate with the okb services #1441
|
File size:
789 bytes
|
Rev | Line | |
---|
[6152] | 1 | /* |
---|
| 2 | Copyright 2006 by Sean Luke and George Mason University |
---|
| 3 | Licensed under the Academic Free License version 3.0 |
---|
| 4 | See the file "LICENSE" for more information |
---|
| 5 | */ |
---|
| 6 | |
---|
| 7 | |
---|
| 8 | package ec.rule; |
---|
| 9 | import ec.util.Parameter; |
---|
| 10 | import ec.*; |
---|
| 11 | |
---|
| 12 | /* |
---|
| 13 | * RuleDefaults.java |
---|
| 14 | * |
---|
| 15 | * Created: Tue Feb 20 1258:00 2001 |
---|
| 16 | * By: Liviu Panait |
---|
| 17 | */ |
---|
| 18 | |
---|
| 19 | /** |
---|
| 20 | * A static class that returns the base for "default values" which rule-style |
---|
| 21 | * operators use, rather than making the user specify them all on a per- |
---|
| 22 | * species basis. |
---|
| 23 | * |
---|
| 24 | * @author Liviu Panait |
---|
| 25 | * @version 1.0 |
---|
| 26 | */ |
---|
| 27 | |
---|
| 28 | public final class RuleDefaults implements DefaultsForm |
---|
| 29 | { |
---|
| 30 | public static final String P_RULE = "rule"; |
---|
| 31 | |
---|
| 32 | /** Returns the default base. */ |
---|
| 33 | public static final Parameter base() |
---|
| 34 | { |
---|
| 35 | return new Parameter(P_RULE); |
---|
| 36 | } |
---|
| 37 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.