Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces
- Timestamp:
- 05/04/17 19:06:54 (7 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/IBestSingleObjectiveTestFunctionSolutionAnalyzer.cs
r14185 r14929 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Optimization; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.TestFunctions { … … 27 28 /// An interface which represents operators for analyzing the best solution of single objective TestFunction Problems given in real vector representation. 28 29 /// </summary> 30 [StorableType("0c2f7368-4196-4f1e-be39-08498595f665")] 29 31 public interface IBestSingleObjectiveTestFunctionSolutionAnalyzer : IAnalyzer, ISingleObjectiveOperator { 30 32 ILookupParameter RealVectorParameter { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/IRastriginMoveEvaluator.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Data; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.TestFunctions { 26 [StorableType("69063889-6ce6-4bcc-b5f5-fe5f42cc3692")] 25 27 public interface IRastriginMoveEvaluator : ISingleObjectiveTestFunctionAdditiveMoveEvaluator { 26 28 DoubleValue A { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/ISingleObjectiveTestFunctionAdditiveMoveEvaluator.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Encodings.RealVectorEncoding; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.TestFunctions { 26 [StorableType("22d7027d-118f-4fd1-bfbf-14d98de3c34b")] 25 27 public interface ISingleObjectiveTestFunctionAdditiveMoveEvaluator : ISingleObjectiveTestFunctionMoveEvaluator, IAdditiveRealVectorMoveOperator { 26 28 } -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/ISingleObjectiveTestFunctionMoveEvaluator.cs
r14185 r14929 22 22 using System; 23 23 using HeuristicLab.Optimization; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.TestFunctions { 27 [StorableType("488fc52e-8c2b-4cc7-9431-e229f001162b")] 26 28 public interface ISingleObjectiveTestFunctionMoveEvaluator : ISingleObjectiveMoveEvaluator, IMoveOperator { 27 29 Type EvaluatorType { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/ISingleObjectiveTestFunctionProblemEvaluator.cs
r14185 r14929 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 25 using HeuristicLab.Optimization; 26 using HeuristicLab.Persistence; 26 27 27 28 namespace HeuristicLab.Problems.TestFunctions { … … 29 30 /// An interface which represents an evaluation operator for single objective test functions. 30 31 /// </summary> 32 [StorableType("143214d5-8cf7-44a2-b73a-8aab763ca5c6")] 31 33 public interface ISingleObjectiveTestFunctionProblemEvaluator : ISingleObjectiveEvaluator { 32 34 bool Maximization { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/ISingleObjectiveTestFunctionProblemSolutionsVisualizer.cs
r14185 r14929 23 23 using HeuristicLab.Encodings.RealVectorEncoding; 24 24 using HeuristicLab.Optimization; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Problems.TestFunctions { … … 28 29 /// An interface which represents an operator for visualizing solutions of single objective test functions. 29 30 /// </summary> 31 [StorableType("b710723c-c799-4a7a-8e7c-221e100cbad1")] 30 32 public interface ISingleObjectiveTestFunctionProblemSolutionsVisualizer : IAnalyzer { 31 33 ILookupParameter<RealVector> PointParameter { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions/3.3/Interfaces/ISphereMoveEvaluator.cs
r14185 r14929 21 21 22 22 using HeuristicLab.Data; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.TestFunctions { 26 [StorableType("9c5e17fd-f3fc-4478-b5a2-176b099c3374")] 25 27 public interface ISphereMoveEvaluator : ISingleObjectiveTestFunctionAdditiveMoveEvaluator { 26 28 DoubleValue C { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.