using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace HeuristicLab.Problems.MultiObjectiveTestFunctions { /// /// Describes instances of Multi Objective Test Functions (MOTF). /// public class MOTFData { /// /// The name of the instance /// public string Name { get; set; } /// /// Optional! The description of the instance /// public string Description { get; set; } /// /// The operator used for evaluations /// public IMultiObjectiveTestFunction Evaluator { get; set; } } }