Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/07/16 10:18:05 (8 years ago)
Author:
ascheibe
Message:

#2582 created branch for Hive Web Job Manager

Location:
branches/WebJobManager
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/WebJobManager/HeuristicLab.Problems.ArtificialAnt/3.4/AntTrail.cs

    r12012 r13656  
    2121
    2222using System;
    23 using System.Drawing;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
     
    3534  [StorableClass]
    3635  public sealed class AntTrail : Item {
    37     public static new Image StaticItemImage {
    38       get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; }
    39     }
     36
    4037    [Storable]
    4138    private SymbolicExpressionTree expression;
    42     public SymbolicExpressionTree SymbolicExpressionTree {
     39    public SymbolicExpressionTree SymbolicExpressionTree
     40    {
    4341      get { return expression; }
    44       set {
     42      set
     43      {
    4544        if (expression != value) {
    4645          //if (expression != null) DeregisterSymbolicExpressionTreeEvents();
     
    5453    [Storable]
    5554    private BoolMatrix world;
    56     public BoolMatrix World {
     55    public BoolMatrix World
     56    {
    5757      get { return world; }
    58       set {
     58      set
     59      {
    5960        if (world != value) {
    6061          if (world != null) DeregisterWorldEvents();
     
    6768    [Storable]
    6869    private IntValue maxTimeSteps;
    69     public IntValue MaxTimeSteps {
     70    public IntValue MaxTimeSteps
     71    {
    7072      get { return maxTimeSteps; }
    71       set {
     73      set
     74      {
    7275        if (maxTimeSteps != value) {
    7376          if (maxTimeSteps != value) {
Note: See TracChangeset for help on using the changeset viewer.