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.Problems.TestFunctions/3.3/Instances/SOTFInstanceProvider.cs

    r12012 r13403  
    4545
    4646    public override IEnumerable<IDataDescriptor> GetDataDescriptors() {
    47       var evaluators = ApplicationManager.Manager.GetInstances<ISingleObjectiveTestFunctionProblemEvaluator>()
     47      var evaluators = ApplicationManager.Manager.GetInstances<ISingleObjectiveTestFunction>()
    4848                                                 .OrderBy(x => x.Name);
    4949      return evaluators.Select(x => new SOTFDataDescriptor(x));
     
    5555        Name = descriptor.Name,
    5656        Description = descriptor.Description,
    57         Evaluator = descriptor.Evaluator
     57        TestFunction = descriptor.TestFunction
    5858      };
    5959    }
Note: See TracChangeset for help on using the changeset viewer.