Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAInitializer.cs
r16692 r16723 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Data; 26 26 using System; 27 using HEAL.Attic; 27 28 28 29 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 30 [StorableType("EA9351D0-94F1-49D5-BE86-000CA0D4996E")] 29 31 public interface ICMAInitializer : IOperator { 30 32 Type CMAType { get; } -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAManipulator.cs
r16692 r16723 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Encodings.RealVectorEncoding; 27 27 using System; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 31 [StorableType("04C80B53-C695-490F-9D1E-6DAE90FF6AFC")] 30 32 public interface ICMAManipulator : IOperator { 31 33 Type CMAType { get; } -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMARecombinator.cs
r16692 r16723 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 26 using System; 27 using HEAL.Attic; 27 28 28 29 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 30 [StorableType("33524FCA-B31B-415E-BC53-87C126CAF124")] 29 31 public interface ICMARecombinator : IOperator { 30 32 Type CMAType { get; } -
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAUpdater.cs
r16692 r16723 2 2 3 3 /* HeuristicLab 4 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 5 5 * 6 6 * This file is part of HeuristicLab. … … 26 26 using HeuristicLab.Encodings.RealVectorEncoding; 27 27 using System; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 31 [StorableType("0BFE0CF3-24A1-4495-A1F3-6D0ED6634BD7")] 30 32 public interface ICMAUpdater : IOperator { 31 33 Type CMAType { get; }
Note: See TracChangeset
for help on using the changeset viewer.