Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/15/16 16:07:14 (8 years ago)
Author:
bwerth
Message:

#1087 minor bugfixes and added unittests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Interfaces/IMultiObjectiveTestFunction.cs

    r13448 r13515  
    2424using HeuristicLab.Encodings.RealVectorEncoding;
    2525
    26 namespace HeuristicLab.Problems.TestFunctions {
     26namespace HeuristicLab.Problems.MultiObjectiveTestFunctions {
    2727  /// <summary>
    2828  /// An interface which represents an evaluation operator for multi objective test functions.
     
    3131    bool[] Maximization { get; }
    3232    DoubleMatrix Bounds { get; }
    33     //double BestKnownQuality { get; }
    3433    int MinimumProblemSize { get; }
    3534    int MaximumProblemSize { get; }
     
    3837    int ActualSolutionSize { get; set; }
    3938
    40     //double Evaluate2D(double x, double y);
     39
     40    RealVector[] OptimalParetoFront { get; }
     41    RealVector ReferencePoint { get; }
     42    double BestKnownHypervolume { get; }
     43
     44
    4145    double[] Evaluate(RealVector point);
    42     //RealVector GetBestKnownSolution(int dimension);
    4346  }
    4447}
Note: See TracChangeset for help on using the changeset viewer.