- Timestamp:
- 02/28/11 17:25:28 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Interfaces/IRealVectorParticleUpdater.cs ¶
r5560 r5568 31 31 ILookupParameter<DoubleMatrix> BoundsParameter { get; } 32 32 ILookupParameter<RealVector> PersonalBestParameter { get; } 33 ILookupParameter<RealVector> Neighbor sBestParameter { get; }33 ILookupParameter<RealVector> NeighborBestParameter { get; } 34 34 } 35 35 } -
TabularUnified trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Interfaces/IRealVectorSwarmUpdater.cs ¶
r5561 r5568 25 25 namespace HeuristicLab.Encodings.RealVectorEncoding { 26 26 public interface IRealVectorSwarmUpdater : ISwarmUpdater, IRealVectorOperator { 27 IScopeTreeLookupParameter<RealVector> Neighbor sBestParameter { get; }27 IScopeTreeLookupParameter<RealVector> NeighborBestParameter { get; } 28 28 IScopeTreeLookupParameter<RealVector> PersonalBestParameter { get; } 29 29 IScopeTreeLookupParameter<RealVector> RealVectorParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.