Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Drawings/IMOQualities.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: 448 bytes
Line 
1using System.Collections.Generic;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.Optimization;
5
6namespace HeuristicLab.Problems.MultiObjectiveTestFunctions.Drawings {
7  public interface IMOQualities :IItem, IStorableContent {
8    int Objectives { get; set; }
9    IEnumerable<double[]> Qualities { get; set; }
10    IEnumerable<double[]> ParetoFront { get; set; }
11    Individual[] Solutions { get; set; }
12  }
13}
Note: See TracBrowser for help on using the repository browser.