Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Data/MOTFData.cs @ 13620

Last change on this file since 13620 was 13620, checked in by bwerth, 8 years ago

#1087 regorganized testfunctions, added view for qualities

File size: 728 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.Problems.MultiObjectiveTestFunctions {
8
9  /// <summary>
10  /// Describes instances of Multi Objective Test Functions (MOTF).
11  /// </summary>
12  public class MOTFData {
13    /// <summary>
14    /// The name of the instance
15    /// </summary>
16    public string Name { get; set; }
17
18    /// <summary>
19    /// Optional! The description of the instance
20    /// </summary>
21    public string Description { get; set; }
22
23    /// <summary>
24    /// The operator used for evaluations
25    /// </summary>
26    public IMultiObjectiveTestFunction Evaluator { get; set; }
27
28  }
29
30}
Note: See TracBrowser for help on using the repository browser.