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.Orienteering/3.3/OrienteeringSolution.cs

    r12721 r13656  
    2121
    2222using System;
    23 using System.Drawing;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
     
    3231  [StorableClass]
    3332  public sealed class OrienteeringSolution : Item {
    34     public static new Image StaticItemImage {
    35       get { return HeuristicLab.Common.Resources.VSImageLibrary.Image; }
    36     }
     33
    3734
    3835    [Storable]
    3936    private IntegerVector integerVector;
    40     public IntegerVector IntegerVector {
     37    public IntegerVector IntegerVector
     38    {
    4139      get { return integerVector; }
    42       set {
     40      set
     41      {
    4342        if (integerVector != value) {
    4443          if (integerVector != null) DeregisterIntegerVectorEvents();
     
    5150    [Storable]
    5251    private DoubleMatrix coordinates;
    53     public DoubleMatrix Coordinates {
     52    public DoubleMatrix Coordinates
     53    {
    5454      get { return coordinates; }
    55       set {
     55      set
     56      {
    5657        if (coordinates != value) {
    5758          if (coordinates != null) DeregisterCoordinatesEvents();
     
    6465    [Storable]
    6566    private IntValue startingPoint;
    66     public IntValue StartingPoint {
     67    public IntValue StartingPoint
     68    {
    6769      get { return startingPoint; }
    68       set {
     70      set
     71      {
    6972        if (startingPoint != value) {
    7073          if (startingPoint != null) DeregisterStartingPointEvents();
     
    7780    [Storable]
    7881    private IntValue terminalPoint;
    79     public IntValue TerminalPoint {
     82    public IntValue TerminalPoint
     83    {
    8084      get { return terminalPoint; }
    81       set {
     85      set
     86      {
    8287        if (terminalPoint != value) {
    8388          if (terminalPoint != null) DeregisterTerminalPointEvents();
     
    9095    [Storable]
    9196    private DoubleArray scores;
    92     public DoubleArray Scores {
     97    public DoubleArray Scores
     98    {
    9399      get { return scores; }
    94       set {
     100      set
     101      {
    95102        if (scores != value) {
    96103          if (scores != null) DeregisterScoresEvents();
     
    103110    [Storable]
    104111    private DoubleValue quality;
    105     public DoubleValue Quality {
     112    public DoubleValue Quality
     113    {
    106114      get { return quality; }
    107       set {
     115      set
     116      {
    108117        if (quality != value) {
    109118          if (quality != null) DeregisterQualityEvents();
     
    116125    [Storable]
    117126    private DoubleValue penalty;
    118     public DoubleValue Penalty {
     127    public DoubleValue Penalty
     128    {
    119129      get { return penalty; }
    120       set {
     130      set
     131      {
    121132        if (penalty != value) {
    122133          if (penalty != null) DeregisterPenaltyEvents();
     
    129140    [Storable]
    130141    private DoubleValue distance;
    131     public DoubleValue Distance {
     142    public DoubleValue Distance
     143    {
    132144      get { return distance; }
    133       set {
     145      set
     146      {
    134147        if (distance != value) {
    135148          if (distance != null) DeregisterDistanceEvents();
Note: See TracChangeset for help on using the changeset viewer.