Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/26/17 09:10:56 (7 years ago)
Author:
bwerth
Message:

#2745 implemented EGO as EngineAlgorithm + some simplifications in the IInfillCriterion interface

File:
1 edited

Legend:

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

    r14818 r15064  
    2727namespace HeuristicLab.Algorithms.EGO {
    2828  public interface IInfillCriterion : INamedItem {
     29
     30    IRegressionSolution RegressionSolution { get; set; }
     31    bool ExpensiveMaximization { get; set; }
     32    RealVectorEncoding Encoding { get; set; }
    2933    double Evaluate(RealVector vector);
    30     bool Maximization();
    31     void Initialize(IRegressionSolution solution, bool expensiveMaximization, RealVectorEncoding encoding);
     34    //bool Maximization();
     35    void Initialize();
    3236  }
    3337}
Note: See TracChangeset for help on using the changeset viewer.