Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/06/10 19:06:26 (14 years ago)
Author:
mkofler
Message:

Worked on #852 (PSO)

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  
    103103    <Compile Include="Interfaces\IBestSingleObjectiveTestFunctionSolutionAnalyzer.cs" />
    104104    <Compile Include="Interfaces\IRastriginMoveEvaluator.cs" />
     105    <Compile Include="Interfaces\IRealVectorPSOEncoder.cs" />
    105106    <Compile Include="Interfaces\ISingleObjectiveTestFunctionAdditiveMoveEvaluator.cs" />
    106107    <Compile Include="Interfaces\ISingleObjectiveTestFunctionMoveEvaluator.cs" />
     
    122123    <Compile Include="MoveEvaluators\AdditiveMoveEvaluator.cs" />
    123124    <Compile Include="MoveEvaluators\RealVectorAdditiveMoveWrapper.cs" />
     125    <Compile Include="RealVectorToRealVectorEncoder.cs" />
    124126    <Compile Include="SingleObjectiveTestFunctionSolution.cs" />
    125127    <Compile Include="SingleObjectiveTestFunctionProblem.cs" />
  • trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs

    r3661 r3682  
    3333using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    3434using HeuristicLab.PluginInfrastructure;
     35using HeuristicLab.Operators;
    3536using HeuristicLab.Problems.TestFunctions.Analyzers;
    3637
     
    353354        op.RealVectorParameter.ActualName = SolutionCreator.RealVectorParameter.ActualName;
    354355      }
     356      foreach (IRealVectorPSOEncoder op in Operators.OfType<IRealVectorPSOEncoder>()) {
     357        ((ILookupParameter)op.OriginalRealVectorParameter).ActualName = SolutionCreator.RealVectorParameter.ActualName;
     358      }
    355359    }
    356360    #endregion
Note: See TracChangeset for help on using the changeset viewer.