- Timestamp:
- 01/28/19 13:41:42 (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/2520_PersistenceReintegration (added) merged: 16451-16454,16462,16465-16468,16470-16472,16474,16476-16477,16479-16487,16529-16530,16539,16551-16555,16558-16559,16562-16564
- Property svn:mergeinfo changed
-
trunk/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAInitializer.cs
r15583 r16565 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; } -
trunk/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAManipulator.cs
r15583 r16565 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; } -
trunk/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMARecombinator.cs
r15583 r16565 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; } -
trunk/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAUpdater.cs
r15583 r16565 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.