Changeset 3682 for trunk/sources/HeuristicLab.Problems.TestFunctions
- Timestamp:
- 05/06/10 19:06:26 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.TestFunctions/3.3
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/HeuristicLab.Problems.TestFunctions-3.3.csproj
r3661 r3682 103 103 <Compile Include="Interfaces\IBestSingleObjectiveTestFunctionSolutionAnalyzer.cs" /> 104 104 <Compile Include="Interfaces\IRastriginMoveEvaluator.cs" /> 105 <Compile Include="Interfaces\IRealVectorPSOEncoder.cs" /> 105 106 <Compile Include="Interfaces\ISingleObjectiveTestFunctionAdditiveMoveEvaluator.cs" /> 106 107 <Compile Include="Interfaces\ISingleObjectiveTestFunctionMoveEvaluator.cs" /> … … 122 123 <Compile Include="MoveEvaluators\AdditiveMoveEvaluator.cs" /> 123 124 <Compile Include="MoveEvaluators\RealVectorAdditiveMoveWrapper.cs" /> 125 <Compile Include="RealVectorToRealVectorEncoder.cs" /> 124 126 <Compile Include="SingleObjectiveTestFunctionSolution.cs" /> 125 127 <Compile Include="SingleObjectiveTestFunctionProblem.cs" /> -
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs
r3661 r3682 33 33 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 34 34 using HeuristicLab.PluginInfrastructure; 35 using HeuristicLab.Operators; 35 36 using HeuristicLab.Problems.TestFunctions.Analyzers; 36 37 … … 353 354 op.RealVectorParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName; 354 355 } 356 foreach (IRealVectorPSOEncoder op in Operators.OfType<IRealVectorPSOEncoder>()) { 357 ((ILookupParameter)op.OriginalRealVectorParameter).ActualName = SolutionCreator.RealVectorParameter.ActualName; 358 } 355 359 } 356 360 #endregion
Note: See TracChangeset
for help on using the changeset viewer.