Changeset 13423 for branches/PTSP/HeuristicLab.Problems.PTSP
- Timestamp:
- 11/30/15 21:06:06 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PTSP/HeuristicLab.Problems.PTSP/3.3/DistanceMatrix.cs
r13412 r13423 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using HeuristicLab.Common; … … 28 27 29 28 namespace 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.")] 34 30 [StorableClass] 35 31 public sealed class DistanceMatrix : DoubleMatrix { 36 32 [StorableConstructor] 37 33 private DistanceMatrix(bool deserializing) : base(deserializing) { } 38 private DistanceMatrix(DistanceMatrix original, Cloner cloner) {39 throw new NotSupportedException("Distance matrices cannot be cloned.");40 }41 34 public DistanceMatrix() : base() { } 42 35 public DistanceMatrix(int rows, int columns) : base(rows, columns) { }
Note: See TracChangeset
for help on using the changeset viewer.