Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/04/11 21:34:45 (14 years ago)
Author:
abeham
Message:

#852

  • Made public properties that redirect to ActualValue.Value private or protected
  • Sealed all of the specific operators
  • Removed files that are present in the repository, but are not included in the project
  • Removed .sln file (is this still needed?)
  • Added license headers to some files
  • Unified the pattern for writing the constructors similar to other files in the trunk
  • Corrected assembly and plugin version from 3.3.0.x to 3.3.2.x
  • Fixed the wiring in the VelocityBoundsModifier
File:
1 edited

Legend:

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

    r5427 r5435  
    2626
    2727namespace HeuristicLab.Algorithms.ParticleSwarmOptimization {
    28 
    2928  [Item("Totally Connected Particle Updater", "Updates the particle's position using (among other things) the global best position. Use together with the empty topology initialzer. Point = Point + Velocity*Omega + (PersonalBestPoint-Point)*Phi_P*r_p + (BestPoint-Point)*Phi_G*r_g")]
    3029  [StorableClass]
    31   public class TotallyConnectedParticleUpdater : ParticleUpdater, IGlobalParticleUpdater {
     30  public sealed class TotallyConnectedParticleUpdater : ParticleUpdater, IGlobalParticleUpdater {
    3231
    3332    #region Construction & Cloning
    3433
    3534    [StorableConstructor]
    36     protected TotallyConnectedParticleUpdater(bool deserializing) : base(deserializing) { }
    37     protected TotallyConnectedParticleUpdater(TotallyConnectedParticleUpdater original, Cloner cloner) : base(original, cloner) { }
     35    private TotallyConnectedParticleUpdater(bool deserializing) : base(deserializing) { }
     36    private TotallyConnectedParticleUpdater(TotallyConnectedParticleUpdater original, Cloner cloner) : base(original, cloner) { }
    3837    public TotallyConnectedParticleUpdater() : base() { }
    3938
Note: See TracChangeset for help on using the changeset viewer.