Last change
on this file since 9584 was
9565,
checked in by melkaref, 12 years ago
|
Robocode Plugin code without Mutation Operators
|
File size:
1.4 KB
|
Rev | Line | |
---|
[9565] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 3 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 4 |
|
---|
| 5 | namespace HeuristicLab.Problems.Robocode
|
---|
| 6 | {
|
---|
| 7 | [StorableClass]
|
---|
| 8 | public class ShotPower : CodeNode
|
---|
| 9 | {
|
---|
| 10 | public override int MinimumArity { get { return 0; } }
|
---|
| 11 | public override int MaximumArity { get { return 0; } }
|
---|
| 12 |
|
---|
| 13 | [Storable]
|
---|
| 14 | public override string Prefix { get; set; }
|
---|
| 15 |
|
---|
| 16 | [Storable]
|
---|
| 17 | public override string Suffix { get; set; }
|
---|
| 18 |
|
---|
| 19 | [StorableConstructor]
|
---|
| 20 | private ShotPower(bool deserializing) : base(deserializing) { }
|
---|
| 21 | private ShotPower(ShotPower original, Cloner cloner)
|
---|
| 22 | : base(original, cloner)
|
---|
| 23 | {
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | public ShotPower()
|
---|
| 27 | : base("ShotPower", "The power of a shot between 0.1 and 3.")
|
---|
| 28 | {
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | public override ISymbolicExpressionTreeNode CreateTreeNode()
|
---|
| 32 | {
|
---|
| 33 | return new ShotPowerTreeNode();
|
---|
| 34 | }
|
---|
| 35 |
|
---|
| 36 | public override IDeepCloneable Clone(Cloner cloner)
|
---|
| 37 | {
|
---|
| 38 | return new ShotPower(this, cloner);
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | public override string Interpret(ISymbolicExpressionTreeNode node, System.Collections.Generic.IEnumerable<ISymbolicExpressionTreeNode> children)
|
---|
| 42 | {
|
---|
| 43 | return " " + ((ShotPowerTreeNode)node).Value + " ";
|
---|
| 44 | }
|
---|
| 45 | }
|
---|
| 46 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.