namespace HeuristicLab.Problems.Instances.Types { /// /// Describes instances of the Segment Optimization Problem (SOP). /// public class SOPData { public string Name { get; set; } public string Description { get; set; } public double[,] Data { get; set; } public int Upper { get; set; } public int Lower { get; set; } public string Aggregation { get; set; } // mean, sum, std } }