Changeset 14818 for branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Interfaces/IInfillCriterion.cs
- Timestamp:
- 04/04/17 12:37:52 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Interfaces/IInfillCriterion.cs
r14741 r14818 27 27 namespace HeuristicLab.Algorithms.EGO { 28 28 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); 31 32 } 32 33 }
Note: See TracChangeset
for help on using the changeset viewer.