Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/15 23:24:01 (9 years ago)
Author:
abeham
Message:

#2521:

  • Adapted single-objective test function problem to new problem infrastructure
  • Added additional interfaces to RealVectorEncoding
  • Fixed IParticleUpdater interface (must implement IStochasticOperator if it contains a Random parameter)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/ProblemRefactoring/HeuristicLab.Optimization/3.3/Interfaces/IParticleUpdater.cs

    r12012 r13403  
    2727  /// Interface to represent an operator that updates a particle
    2828  /// </summary>
    29   public interface IParticleUpdater : IOperator {
     29  public interface IParticleUpdater : IStochasticOperator {
    3030    ILookupParameter<DoubleValue> InertiaParameter { get; }
    3131    ILookupParameter<DoubleValue> NeighborBestAttractionParameter { get; }
    3232    ILookupParameter<DoubleValue> PersonalBestAttractionParameter { get; }
    33     ILookupParameter<IRandom> RandomParameter { get; }
    3433  }
    3534}
Note: See TracChangeset for help on using the changeset viewer.