Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
11/25/15 23:24:01 (8 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.Encodings.RealVectorEncoding/3.3/Interfaces/IRealVectorParticleUpdater.cs

    r12012 r13403  
    2525
    2626namespace HeuristicLab.Encodings.RealVectorEncoding {
    27   public interface IRealVectorParticleUpdater : IParticleUpdater, IRealVectorOperator {
     27  public interface IRealVectorParticleUpdater : IParticleUpdater, IRealVectorSolutionOperator, IRealVectorBoundedOperator {
    2828    ILookupParameter<RealVector> VelocityParameter { get; }
    2929    ILookupParameter<DoubleMatrix> CurrentVelocityBoundsParameter { get; }
    30     ILookupParameter<RealVector> RealVectorParameter { get; }
    31     ILookupParameter<DoubleMatrix> BoundsParameter { get; }
    3230    ILookupParameter<RealVector> PersonalBestParameter { get; }
    3331    ILookupParameter<RealVector> NeighborBestParameter { get; }
Note: See TracChangeset for help on using the changeset viewer.