- Timestamp:
- 06/29/17 15:26:16 (7 years ago)
- Location:
- trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Interfaces/IRealVectorParticleCreator.cs
r14185 r15091 26 26 namespace HeuristicLab.Encodings.RealVectorEncoding { 27 27 public interface IRealVectorParticleCreator : IParticleCreator, IRealVectorOperator { 28 ILookupParameter<IntValue> ProblemSizeParameter { get; }29 28 ILookupParameter<RealVector> RealVectorParameter { get; } 30 29 ILookupParameter<RealVector> PersonalBestParameter { get; } -
trunk/sources/HeuristicLab.Encodings.RealVectorEncoding/3.3/Interfaces/IRealVectorParticleUpdater.cs
r14185 r15091 27 27 public interface IRealVectorParticleUpdater : IParticleUpdater, IRealVectorOperator { 28 28 ILookupParameter<RealVector> VelocityParameter { get; } 29 ILookupParameter<Double Matrix> CurrentVelocityBoundsParameter { get; }29 ILookupParameter<DoubleValue> CurrentMaxVelocityParameter { get; } 30 30 ILookupParameter<RealVector> RealVectorParameter { get; } 31 31 ILookupParameter<DoubleMatrix> BoundsParameter { get; }
Note: See TracChangeset
for help on using the changeset viewer.