Free cookie consent management tool by TermsFeed Policy Generator

Changeset 13423 for branches


Ignore:
Timestamp:
11/30/15 21:06:06 (8 years ago)
Author:
abeham
Message:

#2221: minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/PTSP/HeuristicLab.Problems.PTSP/3.3/DistanceMatrix.cs

    r13412 r13423  
    2020#endregion
    2121
    22 using System;
    2322using System.Collections.Generic;
    2423using HeuristicLab.Common;
     
    2827
    2928namespace HeuristicLab.Problems.PTSP {
    30   /// <summary>
    31   /// Represents a distance matrix of a Traveling Salesman Problem.
    32   /// </summary>
    33   [Item("DistanceMatrix", "Represents a distance matrix of a Traveling Salesman Problem.")]
     29  [Item("DistanceMatrix", "Represents a distance matrix of a Probabilistic Traveling Salesman Problem.")]
    3430  [StorableClass]
    3531  public sealed class DistanceMatrix : DoubleMatrix {
    3632    [StorableConstructor]
    3733    private DistanceMatrix(bool deserializing) : base(deserializing) { }
    38     private DistanceMatrix(DistanceMatrix original, Cloner cloner) {
    39       throw new NotSupportedException("Distance matrices cannot be cloned.");
    40     }
    4134    public DistanceMatrix() : base() { }
    4235    public DistanceMatrix(int rows, int columns) : base(rows, columns) { }
Note: See TracChangeset for help on using the changeset viewer.