Changeset 8331 for branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.ParticleSwarmOptimization
- Timestamp:
- 07/26/12 09:51:13 (12 years ago)
- Location:
- branches/ScatterSearch (trunk integration)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ScatterSearch (trunk integration)
- Property svn:ignore
-
old new 21 21 protoc.exe 22 22 _ReSharper.HeuristicLab 3.3 Tests 23 Google.ProtocolBuffers-2.4.1.473.dll
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/ParticleSwarmOptimization.cs
r7781 r8331 64 64 get { return (IValueParameter<MultiAnalyzer>)Parameters["Analyzer"]; } 65 65 } 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"]; } 83 83 84 84 } -
branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/Plugin.cs.frame
r7259 r8331 26 26 /// Plugin class for HeuristicLab.Algorithms.ParticleSwarmOptimization plugin. 27 27 /// </summary> 28 [Plugin("HeuristicLab.Algorithms.ParticleSwarmOptimization", "3.3. 6.$WCREV$")]28 [Plugin("HeuristicLab.Algorithms.ParticleSwarmOptimization", "3.3.7.$WCREV$")] 29 29 [PluginFile("HeuristicLab.Algorithms.ParticleSwarmOptimization-3.3.dll", PluginFileType.Assembly)] 30 30 [PluginDependency("HeuristicLab.Analysis", "3.3")] -
branches/ScatterSearch (trunk integration)/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/Properties/AssemblyInfo.cs.frame
r7259 r8331 53 53 // by using the '*' as shown below: 54 54 [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.