Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/04/17 12:37:52 (7 years ago)
Author:
bwerth
Message:

#2745 added several new InfillCriteria and moved Parameters from the InfillProblem to the Criteria themselves; added Sanitiy checks for GaussianProcessRegression

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Interfaces/IInfillCriterion.cs

    r14741 r14818  
    2727namespace HeuristicLab.Algorithms.EGO {
    2828  public interface IInfillCriterion : INamedItem {
    29     double Evaluate(IRegressionSolution model, RealVector vector, bool maximization);
    30     bool Maximization(bool expensiveProblemMaximization);
     29    double Evaluate(RealVector vector);
     30    bool Maximization();
     31    void Initialize(IRegressionSolution solution, bool expensiveMaximization, RealVectorEncoding encoding);
    3132  }
    3233}
Note: See TracChangeset for help on using the changeset viewer.