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/TSPData.cs

    r17529 r17533  
    3838    ITSPSolution GetSolution(Permutation tspTour, double tourLength);
    3939    TSPData Export();
     40
     41    DoubleMatrix GetCoordinatesOrDefault();
    4042  }
    4143
     
    111113      };
    112114    }
     115
     116    public DoubleMatrix GetCoordinatesOrDefault() {
     117      return DisplayCoordinates;
     118    }
    113119  }
    114120
     
    178184
    179185    public abstract TSPData Export();
     186
     187    public DoubleMatrix GetCoordinatesOrDefault() {
     188      return Coordinates;
     189    }
    180190  }
    181191
Note: See TracChangeset for help on using the changeset viewer.