- Timestamp:
- 03/07/16 10:18:05 (9 years ago)
- Location:
- branches/WebJobManager
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/WebJobManager/HeuristicLab.Problems.ArtificialAnt/3.4/AntTrail.cs
r12012 r13656 21 21 22 22 using System; 23 using System.Drawing;24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Core; … … 35 34 [StorableClass] 36 35 public sealed class AntTrail : Item { 37 public static new Image StaticItemImage { 38 get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; } 39 } 36 40 37 [Storable] 41 38 private SymbolicExpressionTree expression; 42 public SymbolicExpressionTree SymbolicExpressionTree { 39 public SymbolicExpressionTree SymbolicExpressionTree 40 { 43 41 get { return expression; } 44 set { 42 set 43 { 45 44 if (expression != value) { 46 45 //if (expression != null) DeregisterSymbolicExpressionTreeEvents(); … … 54 53 [Storable] 55 54 private BoolMatrix world; 56 public BoolMatrix World { 55 public BoolMatrix World 56 { 57 57 get { return world; } 58 set { 58 set 59 { 59 60 if (world != value) { 60 61 if (world != null) DeregisterWorldEvents(); … … 67 68 [Storable] 68 69 private IntValue maxTimeSteps; 69 public IntValue MaxTimeSteps { 70 public IntValue MaxTimeSteps 71 { 70 72 get { return maxTimeSteps; } 71 set { 73 set 74 { 72 75 if (maxTimeSteps != value) { 73 76 if (maxTimeSteps != value) {
Note: See TracChangeset
for help on using the changeset viewer.