Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Robocode/HeuristicLab.Problems.Robocode/Symbols/Abandoned/SetAdjustRadarForGunTurn.cs @ 9565

Last change on this file since 9565 was 9565, checked in by melkaref, 11 years ago

Robocode Plugin code without Mutation Operators

File size: 1023 bytes
Line 
1using HeuristicLab.Common;
2using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
3using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
4
5namespace HeuristicLab.Problems.Robocode
6{
7    [StorableClass]
8    public class SetAdjustRadarForGunTurn : Symbol
9    {
10        public override int MinimumArity { get { return 1; } }
11        public override int MaximumArity { get { return 1; } }
12
13        [StorableConstructor]
14        private SetAdjustRadarForGunTurn(bool deserializing) : base(deserializing) { }
15        private SetAdjustRadarForGunTurn(SetAdjustRadarForGunTurn original, Cloner cloner)
16            : base(original, cloner)
17        {
18        }
19
20        public SetAdjustRadarForGunTurn()
21            : base("SetAdjustRadarForGunTurn", "Sets the radar to turn independent from the gun's turn.")
22        {
23        }
24
25        public override IDeepCloneable Clone(Cloner cloner)
26        {
27            return new SetAdjustRadarForGunTurn(this, cloner);
28        }
29    }
30}
Note: See TracBrowser for help on using the repository browser.