- Timestamp:
- 07/24/18 15:13:50 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances/3.3/Types/LOPData.cs
r16003 r16005 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 using System.Threading.Tasks;27 22 28 namespace HeuristicLab.Problems.Instances.Types 29 { 23 namespace HeuristicLab.Problems.Instances { 24 /// <summary> 25 /// Describes instances of the Linear Ordering Problem (LOP). 26 /// </summary> 27 public class LOPData { 30 28 /// <summary> 31 /// Describes instances of the Linear Ordering Problem (LOP).29 /// The name of the instance 32 30 /// </summary> 33 public class LOPData 34 { 35 /// <summary> 36 /// The name of the instance 37 /// </summary> 38 public string Name { get; set; } 31 public string Name { get; set; } 39 32 40 41 42 43 33 /// <summary> 34 /// Optional! The description of the instance 35 /// </summary> 36 public string Description { get; set; } 44 37 45 46 47 48 38 /// <summary> 39 /// The size of the Matrix 40 /// </summary> 41 public int Dimension { get; set; } 49 42 50 51 52 53 43 /// <summary> 44 /// An NxN Matrix 45 /// </summary> 46 public double[,] Matrix { get; set; } 54 47 55 56 57 58 48 /// <summary> 49 /// Optional! The best known Permutation 50 /// </summary> 51 public int[] BestKnownPermutation { get; set; } 59 52 60 61 62 63 64 53 /// <summary> 54 /// Optional! The quality value of the <see cref="BestKnownPermutation"/> 55 /// </summary> 56 public double? BestKnownQuality { get; set; } 57 } 65 58 }
Note: See TracChangeset
for help on using the changeset viewer.