Changeset 14471 for branches/MemPRAlgorithm/HeuristicLab.Problems.Instances
- Timestamp:
- 12/09/16 15:56:22 (8 years ago)
- Location:
- branches/MemPRAlgorithm/HeuristicLab.Problems.Instances/3.3
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/MemPRAlgorithm/HeuristicLab.Problems.Instances/3.3/HeuristicLab.Problems.Instances-3.3.csproj
r13484 r14471 128 128 <Compile Include="Types\DistanceHelper.cs" /> 129 129 <Compile Include="Types\OPData.cs" /> 130 <Compile Include="Types\GCPData.cs" /> 130 131 <Compile Include="Types\VRP\MDCVRPTWData.cs" /> 131 132 <Compile Include="Types\VRP\MDCVRPData.cs" /> -
branches/MemPRAlgorithm/HeuristicLab.Problems.Instances/3.3/Types/GCPData.cs
r14429 r14471 22 22 namespace HeuristicLab.Problems.Instances { 23 23 /// <summary> 24 /// Describes instances of the Quadratic Assignment Problem (QAP).24 /// Describes instances of the graph coloring problem (GCP). 25 25 /// </summary> 26 public class QAPData {26 public class GCPData { 27 27 /// <summary> 28 28 /// The name of the instance … … 35 35 36 36 /// <summary> 37 /// The number of facilities (and also the number of locations)37 /// The number of nodes in the graph 38 38 /// </summary> 39 public int Dimension{ get; set; }39 public int Nodes { get; set; } 40 40 /// <summary> 41 /// An Nx N Matrix with N = |Faciliies|41 /// An Nx2 adjacency list with N = Nodes 42 42 /// </summary> 43 public double[,] Distances { get; set; } 44 /// <summary> 45 /// An NxN Matrix with N = |Faciliies| 46 /// </summary> 47 public double[,] Weights { get; set; } 43 public int[,] Adjacencies { get; set; } 48 44 49 45 /// <summary> 50 /// Optional! An array of length N with N = | Facilities|46 /// Optional! An array of length N with N = |Nodes| 51 47 /// </summary> 52 public int[] BestKnown Assignment{ get; set; }48 public int[] BestKnownColoring { get; set; } 53 49 /// <summary> 54 /// Optional! The quality value of the <see cref="BestKnown Assignment"/>50 /// Optional! The quality value of the <see cref="BestKnownColoring"/> 55 51 /// </summary> 56 public double? BestKnown Quality{ get; set; }52 public double? BestKnownColors { get; set; } 57 53 } 58 54 }
Note: See TracChangeset
for help on using the changeset viewer.