Changeset 9982 for trunk/sources/HeuristicLab.Problems.TestFunctions
- Timestamp:
- 09/17/13 11:47:57 (12 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.TestFunctions/3.3
- Files:
-
- 1 added
- 2 edited
- 2 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/HeuristicLab.Problems.TestFunctions-3.3.csproj ¶
r9981 r9982 110 110 <Compile Include="Evaluators\RandomEvaluator.cs" /> 111 111 <Compile Include="Improvers\SingleObjectiveTestFunctionImprovementOperator.cs" /> 112 <Compile Include="Instances\SOTFData.cs" /> 113 <Compile Include="Instances\SOTFDataDescriptor.cs" /> 114 <Compile Include="Instances\SOTFInstanceProvider.cs" /> 112 115 <Compile Include="MoveEvaluators\RandomAdditiveMoveEvaluator.cs" /> 113 116 <Compile Include="PathRelinkers\SingleObjectiveTestFunctionPathRelinker.cs" /> -
TabularUnified 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 } -
TabularUnified 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"; } } -
TabularUnified 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 { -
TabularUnified trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs ¶
r9980 r9982 410 410 Name = data.Name; 411 411 Description = data.Description; 412 Evaluator = (ISingleObjectiveTestFunctionProblemEvaluator)data.Evaluator;412 Evaluator = data.Evaluator; 413 413 } 414 414 }
Note: See TracChangeset
for help on using the changeset viewer.