Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/17 12:07:20 (7 years ago)
Author:
bwerth
Message:

#2745 fixed pausing and stopping and namespaces; Added MaximalDatasetSize and rudimentary ISurrogateAlgorithm-interface

Location:
branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO

    • Property svn:global-ignores set to
      obj
    • Property svn:ignore set to
      HeuristicLab.Algorithms.EGO-3.4.csproj.user
      Plugin.cs
  • branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Problems/InfillProblem.cs

    r14741 r14768  
    2121
    2222using System;
    23 using HeuristicLab.Algorithms.EGO;
    2423using HeuristicLab.Common;
    2524using HeuristicLab.Core;
     
    3029using HeuristicLab.Problems.DataAnalysis;
    3130
    32 namespace HeuristicLab.Problems.SurrogateProblem {
     31namespace HeuristicLab.Algorithms.EGO {
    3332  [StorableClass]
    3433  [Item("InfillProblem", "A problem for finding the most interesing potential new sampling Points by optimizing some InfillCriterion")]
    3534  public sealed class InfillProblem : SingleObjectiveBasicProblem<RealVectorEncoding> {
    3635
    37     [Storable]
    3836    public override bool Maximization => true;
    3937
     
    6058        if (problem == null) return;
    6159        Encoding = problem.Encoding as RealVectorEncoding;
     60        SolutionCreator = new UniformRandomRealVectorCreator();//ignore Problem specific Solution Creation
    6261        if (Encoding == null) throw new ArgumentException("EGO can not be performed on non-RealVectorEncodings");
    6362      }
Note: See TracChangeset for help on using the changeset viewer.