Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAInitializer.cs
r14185 r14929 25 25 using HeuristicLab.Data; 26 26 using System; 27 using HeuristicLab.Persistence; 27 28 28 29 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 30 [StorableType("623879a0-0ecd-4c2f-82f6-e7fb45df2368")] 29 31 public interface ICMAInitializer : IOperator { 30 32 Type CMAType { get; } -
branches/PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAManipulator.cs
r14185 r14929 26 26 using HeuristicLab.Encodings.RealVectorEncoding; 27 27 using System; 28 using HeuristicLab.Persistence; 28 29 29 30 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 31 [StorableType("93fc8fd6-0363-46e6-8ed1-a5fdef57a8bb")] 30 32 public interface ICMAManipulator : IOperator { 31 33 Type CMAType { get; } -
branches/PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMARecombinator.cs
r14185 r14929 25 25 using HeuristicLab.Encodings.RealVectorEncoding; 26 26 using System; 27 using HeuristicLab.Persistence; 27 28 28 29 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 30 [StorableType("a8ebdbad-f3e1-499f-8ed6-9d21cf77ffce")] 29 31 public interface ICMARecombinator : IOperator { 30 32 Type CMAType { get; } -
branches/PersistenceReintegration/HeuristicLab.Algorithms.CMAEvolutionStrategy/3.4/Interfaces/ICMAUpdater.cs
r14185 r14929 26 26 using HeuristicLab.Encodings.RealVectorEncoding; 27 27 using System; 28 using HeuristicLab.Persistence; 28 29 29 30 namespace HeuristicLab.Algorithms.CMAEvolutionStrategy { 31 [StorableType("90733091-af10-43fb-ae87-94d44536d916")] 30 32 public interface ICMAUpdater : IOperator { 31 33 Type CMAType { get; }
Note: See TracChangeset
for help on using the changeset viewer.