Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/16/10 06:50:14 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • worked on parameters, TSP and selection
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Routing.TSP/3.3/TSPLIBParser.cs

    r2804 r2805  
    2828  /// Parses a *.tsp file in the TSPLIB format and extracts its information about a TSP.
    2929  /// </summary>
    30   public class TSPParser {
     30  public class TSPLIBParser {
    3131    private const int EOF = 0;
    3232    private const int NAME = 1;
     
    6767    /// </exception>
    6868    /// <param name="path">The path where the TSP is stored.</param>
    69     public TSPParser(String path) {
     69    public TSPLIBParser(String path) {
    7070      if (!path.EndsWith(".tsp"))
    7171        throw new ArgumentException("Input file name has to be in TSP format (*.tsp)");
Note: See TracChangeset for help on using the changeset viewer.