Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.Problems.Instances/3.3/Types/SOPData.cs @ 18098

Last change on this file since 18098 was 18098, checked in by pfleck, 2 years ago

#3040 Added support for multi-row data for SOP instances where the segment aggregation results are averaged over multiple rows.

File size: 453 bytes
Line 
1namespace HeuristicLab.Problems.Instances.Types {
2  /// <summary>
3  /// Describes instances of the Segment Optimization Problem (SOP).
4  /// </summary>
5  public class SOPData {
6    public string Name { get; set; }
7    public string Description { get; set; }
8
9    public double[,] Data { get; set; }
10    public int Upper { get; set; }
11    public int Lower { get; set; }
12    public string Aggregation { get; set; } // mean, sum, std
13  }
14}
Note: See TracBrowser for help on using the repository browser.