- Timestamp:
- 03/20/17 12:07:20 (8 years ago)
- 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
-
Property
svn:global-ignores
set to
-
branches/EfficientGlobalOptimization/HeuristicLab.Algorithms.EGO/Problems/InfillProblem.cs
r14741 r14768 21 21 22 22 using System; 23 using HeuristicLab.Algorithms.EGO;24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Core; … … 30 29 using HeuristicLab.Problems.DataAnalysis; 31 30 32 namespace HeuristicLab. Problems.SurrogateProblem{31 namespace HeuristicLab.Algorithms.EGO { 33 32 [StorableClass] 34 33 [Item("InfillProblem", "A problem for finding the most interesing potential new sampling Points by optimizing some InfillCriterion")] 35 34 public sealed class InfillProblem : SingleObjectiveBasicProblem<RealVectorEncoding> { 36 35 37 [Storable]38 36 public override bool Maximization => true; 39 37 … … 60 58 if (problem == null) return; 61 59 Encoding = problem.Encoding as RealVectorEncoding; 60 SolutionCreator = new UniformRandomRealVectorCreator();//ignore Problem specific Solution Creation 62 61 if (Encoding == null) throw new ArgumentException("EGO can not be performed on non-RealVectorEncodings"); 63 62 }
Note: See TracChangeset
for help on using the changeset viewer.