Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/24/18 15:13:50 (6 years ago)
Author:
fholzing
Message:

#2864: Removed .Types from the LOPData.cs-Namespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2864_PermutationProblems/HeuristicLab.Problems.Instances/3.3/Types/LOPData.cs

    r16003 r16005  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    26 using System.Threading.Tasks;
    2722
    28 namespace HeuristicLab.Problems.Instances.Types
    29 {
     23namespace HeuristicLab.Problems.Instances {
     24  /// <summary>
     25  /// Describes instances of the Linear Ordering Problem (LOP).
     26  /// </summary>
     27  public class LOPData {
    3028    /// <summary>
    31     /// Describes instances of the Linear Ordering Problem (LOP).
     29    /// The name of the instance
    3230    /// </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; }
    3932
    40         /// <summary>
    41         /// Optional! The description of the instance
    42         /// </summary>
    43         public string Description { get; set; }
     33    /// <summary>
     34    /// Optional! The description of the instance
     35    /// </summary>
     36    public string Description { get; set; }
    4437
    45         /// <summary>
    46         /// The size of the Matrix
    47         /// </summary>
    48         public int Dimension { get; set; }
     38    /// <summary>
     39    /// The size of the Matrix
     40    /// </summary>
     41    public int Dimension { get; set; }
    4942
    50         /// <summary>
    51         /// An NxN Matrix
    52         /// </summary>
    53         public double[,] Matrix { get; set; }
     43    /// <summary>
     44    /// An NxN Matrix
     45    /// </summary>
     46    public double[,] Matrix { get; set; }
    5447
    55         /// <summary>
    56         /// Optional! The best known Permutation
    57         /// </summary>
    58         public int[] BestKnownPermutation { get; set; }
     48    /// <summary>
     49    /// Optional! The best known Permutation
     50    /// </summary>
     51    public int[] BestKnownPermutation { get; set; }
    5952
    60         /// <summary>
    61         /// Optional! The quality value of the <see cref="BestKnownPermutation"/>
    62         /// </summary>
    63         public double? BestKnownQuality { get; set; }
    64     }
     53    /// <summary>
     54    /// Optional! The quality value of the <see cref="BestKnownPermutation"/>
     55    /// </summary>
     56    public double? BestKnownQuality { get; set; }
     57  }
    6558}
Note: See TracChangeset for help on using the changeset viewer.