Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/03/11 00:53:16 (13 years ago)
Author:
abeham
Message:

#852

  • Renamed CurrentIteration to Iterations
File:
1 edited

Legend:

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

    r5893 r5935  
    179179      randomCreator.Successor = variableCreator;
    180180
    181       variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("CurrentIteration", new IntValue(0)));
     181      variableCreator.CollectedValues.Add(new ValueParameter<IntValue>("Iterations", new IntValue(0)));
    182182      variableCreator.Successor = currentInertiaAssigner;
    183183
     
    300300      foreach (IDiscreteDoubleValueModifier updater in InertiaUpdaterParameter.ValidValues) {
    301301        updater.EndIndexParameter.ActualName = MaxIterationsParameter.Name;
    302         updater.EndIndexParameter.Hidden = true; 
     302        updater.EndIndexParameter.Hidden = true;
    303303        updater.StartIndexParameter.Value = new IntValue(0);
    304304        updater.StartIndexParameter.Hidden = true;
    305         updater.IndexParameter.ActualName = "CurrentIteration";
     305        updater.IndexParameter.ActualName = "Iterations";
    306306        updater.ValueParameter.ActualName = "CurrentInertia";
    307307        updater.StartValueParameter.Value = new DoubleValue(1);
Note: See TracChangeset for help on using the changeset viewer.