Changeset 15064 for branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Interfaces/IInfillCriterion.cs
- Timestamp:
- 06/26/17 09:10:56 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Interfaces/IInfillCriterion.cs
r14818 r15064 27 27 namespace HeuristicLab.Algorithms.EGO { 28 28 public interface IInfillCriterion : INamedItem { 29 30 IRegressionSolution RegressionSolution { get; set; } 31 bool ExpensiveMaximization { get; set; } 32 RealVectorEncoding Encoding { get; set; } 29 33 double Evaluate(RealVector vector); 30 bool Maximization();31 void Initialize( IRegressionSolution solution, bool expensiveMaximization, RealVectorEncoding encoding);34 //bool Maximization(); 35 void Initialize(); 32 36 } 33 37 }
Note: See TracChangeset
for help on using the changeset viewer.