Changeset 16005
- Timestamp:
- 07/24/18 15:13:50 (6 years ago)
- Location:
- branches/2864_PermutationProblems
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPDataDescriptor.cs
r16003 r16005 20 20 #endregion 21 21 22 using HeuristicLab.Problems.Instances;23 22 24 23 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPIOInstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPMBInstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPRANDA1InstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPRANDA2InstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPRANDBInstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPSGBInstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPSPECInstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
branches/2864_PermutationProblems/HeuristicLab.Problems.Instances.PermutationProblems/3.3/LOP/LOPXLOLIBInstanceProvider.cs
r16004 r16005 27 27 using System.Reflection; 28 28 using System.Text.RegularExpressions; 29 using HeuristicLab.Problems.Instances.Types;30 29 31 30 namespace HeuristicLab.Problems.Instances.PermutationProblems.LinearOrdering { -
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.