- Timestamp:
- 09/17/13 11:47:57 (11 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Instances
- Files:
-
- 1 added
- 2 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Instances/SOTFData.cs
r9980 r9982 20 20 #endregion 21 21 22 using HeuristicLab.Core;23 22 24 namespace HeuristicLab.Problems. Instances {23 namespace HeuristicLab.Problems.TestFunctions { 25 24 /// <summary> 26 25 /// Describes instances of Single Objective Test Functions (SOTF). … … 40 39 /// The operator used for evaluations 41 40 /// </summary> 42 public I Operator Evaluator { get; set; }41 public ISingleObjectiveTestFunctionProblemEvaluator Evaluator { get; set; } 43 42 } 44 43 } -
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Instances/SOTFDataDescriptor.cs
r9980 r9982 20 20 #endregion 21 21 22 using HeuristicLab.Problems. TestFunctions;22 using HeuristicLab.Problems.Instances; 23 23 24 namespace HeuristicLab.Problems. Instances.TestFunctions {24 namespace HeuristicLab.Problems.TestFunctions { 25 25 internal class SOTFDataDescriptor : IDataDescriptor { 26 26 public string Name { get { return Evaluator.FunctionName + " Function"; } } -
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Instances/SOTFInstanceProvider.cs
r9980 r9982 24 24 using System.Linq; 25 25 using HeuristicLab.PluginInfrastructure; 26 using HeuristicLab.Problems. TestFunctions;26 using HeuristicLab.Problems.Instances; 27 27 28 namespace HeuristicLab.Problems. Instances.TestFunctions {28 namespace HeuristicLab.Problems.TestFunctions { 29 29 public class SOTFInstanceProvider : ProblemInstanceProvider<SOTFData> { 30 30 public override string Name {
Note: See TracChangeset
for help on using the changeset viewer.