Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/08/20 16:55:51 (4 years ago)
Author:
abeham
Message:

#2521: Unified architecture

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.TravelingSalesman/3.3/TSPSolution.cs

    r17356 r17533  
    3131  [StorableType("f08a63d9-0b83-4944-9251-42925baeb872")]
    3232  public interface ITSPSolution : IItem, INotifyPropertyChanged {
    33     ITSPData TSPData { get; }
     33    ITSPData Data { get; }
    3434    Permutation Tour { get; }
    3535    DoubleValue TourLength { get; }
     
    4747
    4848    [Storable] private ITSPData tspData;
    49     public ITSPData TSPData {
     49    public ITSPData Data {
    5050      get { return tspData; }
    5151      set {
    5252        if (tspData == value) return;
    5353        tspData = value;
    54         OnPropertyChanged(nameof(TSPData));
     54        OnPropertyChanged(nameof(Data));
    5555      }
    5656    }
Note: See TracChangeset for help on using the changeset viewer.