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.TravelingSalesman/3.3/PathTSPTour.cs

    r12012 r13656  
    2121
    2222using System;
    23 using System.Drawing;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
     
    3534  [StorableClass]
    3635  public sealed class PathTSPTour : Item {
    37     public static new Image StaticItemImage {
    38       get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; }
    39     }
     36
    4037
    4138    [Storable]
    4239    private DoubleMatrix coordinates;
    43     public DoubleMatrix Coordinates {
     40    public DoubleMatrix Coordinates
     41    {
    4442      get { return coordinates; }
    45       set {
     43      set
     44      {
    4645        if (coordinates != value) {
    4746          if (coordinates != null) DeregisterCoordinatesEvents();
     
    5453    [Storable]
    5554    private Permutation permutation;
    56     public Permutation Permutation {
     55    public Permutation Permutation
     56    {
    5757      get { return permutation; }
    58       set {
     58      set
     59      {
    5960        if (permutation != value) {
    6061          if (permutation != null) DeregisterPermutationEvents();
     
    6768    [Storable]
    6869    private DoubleValue quality;
    69     public DoubleValue Quality {
     70    public DoubleValue Quality
     71    {
    7072      get { return quality; }
    71       set {
     73      set
     74      {
    7275        if (quality != value) {
    7376          if (quality != null) DeregisterQualityEvents();
Note: See TracChangeset for help on using the changeset viewer.