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/IRealVectorSwarmUpdater.cs

    r12012 r13403  
    2121
    2222using HeuristicLab.Core;
    23 using HeuristicLab.Optimization; 
     23using HeuristicLab.Optimization;
    2424
    2525namespace HeuristicLab.Encodings.RealVectorEncoding {
    26   public interface IRealVectorSwarmUpdater : ISwarmUpdater, IRealVectorOperator {
     26  public interface IRealVectorSwarmUpdater : ISwarmUpdater, IRealVectorSolutionsOperator {
    2727    IScopeTreeLookupParameter<RealVector> NeighborBestParameter { get; }
    2828    IScopeTreeLookupParameter<RealVector> PersonalBestParameter { get; }
    29     IScopeTreeLookupParameter<RealVector> RealVectorParameter { get; }
    3029  }
    3130}
Note: See TracChangeset for help on using the changeset viewer.