Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/29/17 11:28:16 (7 years ago)
Author:
bwerth
Message:

#2745 added discretized EGO-version for use with IntegerVectors

File:
1 edited

Legend:

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

    r14833 r15343  
    2222// ReSharper disable once CheckNamespace
    2323using HeuristicLab.Core;
    24 using HeuristicLab.Encodings.RealVectorEncoding;
     24using HeuristicLab.Optimization;
    2525
    2626namespace HeuristicLab.Algorithms.EGO {
    27   public interface IInitialSampling : INamedItem {
    28     RealVector[] GetSamples(int noSamples, RealVector[] existingSamples, RealVectorEncoding encoding, IRandom random);
     27  public interface IInitialSampling<T> : INamedItem where T : class {
     28    T[] GetSamples(int noSamples, T[] existingSamples, IEncoding encoding, IRandom random);
    2929  }
    3030}
Note: See TracChangeset for help on using the changeset viewer.