Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/04/11 11:12:42 (13 years ago)
Author:
epitzer
Message:

Correct cloning constructor of NeighborhoodParticleUpdater and TotallyConnectedParticleUpdater. (#852)

Location:
trunk/sources/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3
Files:
2 edited

Legend:

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

    r5410 r5427  
    3535    [StorableConstructor]
    3636    protected NeighborhoodParticleUpdater(bool deserializing) : base(deserializing) { }
    37     protected NeighborhoodParticleUpdater(ParticleUpdater original, Cloner cloner) : base(original, cloner) { }
     37    protected NeighborhoodParticleUpdater(NeighborhoodParticleUpdater original, Cloner cloner) : base(original, cloner) { }
    3838    public NeighborhoodParticleUpdater() : base() { }
    3939
  • trunk/sources/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/TotallyConnectedParticleUpdater.cs

    r5410 r5427  
    3535    [StorableConstructor]
    3636    protected TotallyConnectedParticleUpdater(bool deserializing) : base(deserializing) { }
    37     protected TotallyConnectedParticleUpdater(ParticleUpdater original, Cloner cloner) : base(original, cloner) { }
     37    protected TotallyConnectedParticleUpdater(TotallyConnectedParticleUpdater original, Cloner cloner) : base(original, cloner) { }
    3838    public TotallyConnectedParticleUpdater() : base() { }
    3939
Note: See TracChangeset for help on using the changeset viewer.