- Timestamp:
- 11/25/15 23:24:01 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/Interfaces/IParticleUpdater.cs
r12012 r13403 27 27 /// Interface to represent an operator that updates a particle 28 28 /// </summary> 29 public interface IParticleUpdater : I Operator {29 public interface IParticleUpdater : IStochasticOperator { 30 30 ILookupParameter<DoubleValue> InertiaParameter { get; } 31 31 ILookupParameter<DoubleValue> NeighborBestAttractionParameter { get; } 32 32 ILookupParameter<DoubleValue> PersonalBestAttractionParameter { get; } 33 ILookupParameter<IRandom> RandomParameter { get; }34 33 } 35 34 }
Note: See TracChangeset
for help on using the changeset viewer.