Free cookie consent management tool by TermsFeed Policy Generator

Changeset 3724


Ignore:
Timestamp:
05/08/10 23:31:57 (14 years ago)
Author:
mkofler
Message:

Forgot to commit RealVectorToRealVectorEncoder for PSO (#852)

Location:
trunk/sources
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/ParticleSwarmOptimization.cs

    r3719 r3724  
    9999      Parameters.Add(new ValueParameter<IntValue>("Seed", "The random seed used to initialize the new pseudo random number generator.", new IntValue(0)));
    100100      Parameters.Add(new ValueParameter<BoolValue>("SetSeedRandomly", "True if the random seed should be set to a random value, otherwise false.", new BoolValue(true)));
    101       Parameters.Add(new ValueParameter<IntValue>("SwarmSize", "Size of the particle swarm.", new IntValue(1)));
     101      Parameters.Add(new ValueParameter<IntValue>("SwarmSize", "Size of the particle swarm.", new IntValue(10)));
    102102      Parameters.Add(new ValueParameter<IntValue>("MaxIterations", "Maximal number of iterations.", new IntValue(1000)));
    103103      Parameters.Add(new ConstrainedValueParameter<IRealVectorEncoder>("Encoder", "The operator used to encode solutions as position vector."));
  • trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/HeuristicLab.Problems.TestFunctions-3.3.csproj

    r3719 r3724  
    124124    <Compile Include="MoveEvaluators\AdditiveMoveEvaluator.cs" />
    125125    <Compile Include="MoveEvaluators\RealVectorAdditiveMoveWrapper.cs" />
    126     <Compile Include="RealVectorToRealVectorDecoder.cs" />
    127126    <Compile Include="RealVectorToRealVectorEncoder.cs" />
    128127    <Compile Include="SingleObjectiveTestFunctionSolution.cs" />
Note: See TracChangeset for help on using the changeset viewer.