- Timestamp:
- 04/04/17 12:37:52 (8 years ago)
- Location:
- branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Interfaces
- Files:
-
- 2 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 } -
branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Interfaces/ISurrogateAlgorithm.cs
r14768 r14818 26 26 namespace HeuristicLab.Algorithms.EGO { 27 27 public interface ISurrogateAlgorithm<T> : IAlgorithm where T : IDeepCloneable { 28 void SetInitialSamples(T[] i, double[] qualities);28 void SetInitialSamples(T[] solutions, double[] qualities); 29 29 } 30 30 }
Note: See TracChangeset
for help on using the changeset viewer.