Last change
on this file since 12921 was
9601,
checked in by ascheibe, 11 years ago
|
#2069
- fixed cloning in Solution so that the SolutionCodeView can run a battle
- fixed a compiler warning in CodeNodeView
|
File size:
1.4 KB
|
Rev | Line | |
---|
[9565] | 1 | using HeuristicLab.Common;
|
---|
| 2 | using HeuristicLab.Core;
|
---|
| 3 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 4 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
| 5 |
|
---|
[9601] | 6 | namespace HeuristicLab.Problems.Robocode {
|
---|
| 7 | [StorableClass]
|
---|
| 8 | public sealed class Solution : NamedItem {
|
---|
| 9 | //private int moves;
|
---|
| 10 | //[Storable]
|
---|
| 11 | //public int Moves
|
---|
| 12 | //{
|
---|
| 13 | // get { return moves; }
|
---|
| 14 | // private set { this.moves = value; }
|
---|
| 15 | //}
|
---|
| 16 | //private int shots;
|
---|
| 17 | //[Storable]
|
---|
| 18 | //public int Shots
|
---|
| 19 | //{
|
---|
| 20 | // get { return shots; }
|
---|
| 21 | // private set { this.shots = value; }
|
---|
| 22 | //}
|
---|
| 23 | [Storable]
|
---|
| 24 | public ISymbolicExpressionTree Tree { get; set; }
|
---|
[9565] | 25 |
|
---|
[9601] | 26 | [Storable]
|
---|
| 27 | public string Path { get; set; }
|
---|
[9565] | 28 |
|
---|
[9601] | 29 | [StorableConstructor]
|
---|
| 30 | private Solution(bool deserializing) : base(deserializing) { }
|
---|
| 31 | private Solution(Solution original, Cloner cloner)
|
---|
| 32 | : base(original, cloner) {
|
---|
[9565] | 33 |
|
---|
[9601] | 34 | Tree = cloner.Clone(original.Tree);
|
---|
| 35 | Path = original.Path;
|
---|
[9565] | 36 | }
|
---|
[9601] | 37 |
|
---|
| 38 | public Solution(ISymbolicExpressionTree tree, string path)// int moves, int shots)
|
---|
| 39 | : base("Solution", "A tank program.") {
|
---|
| 40 | this.Tree = tree;
|
---|
| 41 | this.Path = path;
|
---|
| 42 | //this.moves = moves;
|
---|
| 43 | //this.shots = shots;
|
---|
| 44 | }
|
---|
| 45 |
|
---|
| 46 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
| 47 | return new Solution(this, cloner);
|
---|
| 48 | }
|
---|
| 49 | }
|
---|
[9565] | 50 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.