Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/26/12 09:51:13 (12 years ago)
Author:
jkarder
Message:

#1331: merged r8086:8330 from trunk

Location:
branches/ScatterSearch (trunk integration)
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/ScatterSearch (trunk integration)

  • branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/ParticleSwarmOptimization.cs

    r7781 r8331  
    6464      get { return (IValueParameter<MultiAnalyzer>)Parameters["Analyzer"]; }
    6565    }
    66     public ConstrainedValueParameter<IParticleCreator> ParticleCreatorParameter {
    67       get { return (ConstrainedValueParameter<IParticleCreator>)Parameters["ParticleCreator"]; }
    68     }
    69     public ConstrainedValueParameter<IParticleUpdater> ParticleUpdaterParameter {
    70       get { return (ConstrainedValueParameter<IParticleUpdater>)Parameters["ParticleUpdater"]; }
    71     }
    72     public OptionalConstrainedValueParameter<ITopologyInitializer> TopologyInitializerParameter {
    73       get { return (OptionalConstrainedValueParameter<ITopologyInitializer>)Parameters["TopologyInitializer"]; }
    74     }
    75     public OptionalConstrainedValueParameter<ITopologyUpdater> TopologyUpdaterParameter {
    76       get { return (OptionalConstrainedValueParameter<ITopologyUpdater>)Parameters["TopologyUpdater"]; }
    77     }
    78     public OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier> InertiaUpdaterParameter {
    79       get { return (OptionalConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["InertiaUpdater"]; }
    80     }
    81     public ConstrainedValueParameter<ISwarmUpdater> SwarmUpdaterParameter {
    82       get { return (ConstrainedValueParameter<ISwarmUpdater>)Parameters["SwarmUpdater"]; }
     66    public IConstrainedValueParameter<IParticleCreator> ParticleCreatorParameter {
     67      get { return (IConstrainedValueParameter<IParticleCreator>)Parameters["ParticleCreator"]; }
     68    }
     69    public IConstrainedValueParameter<IParticleUpdater> ParticleUpdaterParameter {
     70      get { return (IConstrainedValueParameter<IParticleUpdater>)Parameters["ParticleUpdater"]; }
     71    }
     72    public IConstrainedValueParameter<ITopologyInitializer> TopologyInitializerParameter {
     73      get { return (IConstrainedValueParameter<ITopologyInitializer>)Parameters["TopologyInitializer"]; }
     74    }
     75    public IConstrainedValueParameter<ITopologyUpdater> TopologyUpdaterParameter {
     76      get { return (IConstrainedValueParameter<ITopologyUpdater>)Parameters["TopologyUpdater"]; }
     77    }
     78    public IConstrainedValueParameter<IDiscreteDoubleValueModifier> InertiaUpdaterParameter {
     79      get { return (IConstrainedValueParameter<IDiscreteDoubleValueModifier>)Parameters["InertiaUpdater"]; }
     80    }
     81    public IConstrainedValueParameter<ISwarmUpdater> SwarmUpdaterParameter {
     82      get { return (IConstrainedValueParameter<ISwarmUpdater>)Parameters["SwarmUpdater"]; }
    8383
    8484    }
  • branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/Plugin.cs.frame

    r7259 r8331  
    2626  /// Plugin class for HeuristicLab.Algorithms.ParticleSwarmOptimization plugin.
    2727  /// </summary>
    28   [Plugin("HeuristicLab.Algorithms.ParticleSwarmOptimization", "3.3.6.$WCREV$")]
     28  [Plugin("HeuristicLab.Algorithms.ParticleSwarmOptimization", "3.3.7.$WCREV$")]
    2929  [PluginFile("HeuristicLab.Algorithms.ParticleSwarmOptimization-3.3.dll", PluginFileType.Assembly)]
    3030  [PluginDependency("HeuristicLab.Analysis", "3.3")]
  • branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/Properties/AssemblyInfo.cs.frame

    r7259 r8331  
    5353// by using the '*' as shown below:
    5454[assembly: AssemblyVersion("3.3.0.0")]
    55 [assembly: AssemblyFileVersion("3.3.6.$WCREV$")]
     55[assembly: AssemblyFileVersion("3.3.7.$WCREV$")]
Note: See TracChangeset for help on using the changeset viewer.