Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/15/20 13:53:11 (4 years ago)
Author:
mkommend
Message:

#2971: Added first draft of results implementation and problem adaptation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Encodings.BinaryVectorEncoding/3.3/BinaryVectorProblem.cs

    r17695 r17745  
    7777    }
    7878
    79     public override void Analyze(ISingleObjectiveSolutionContext<BinaryVector>[] solutionContexts, ResultCollection results, IRandom random) {
    80       base.Analyze(solutionContexts, results, random);
     79    public override void Analyze(ISingleObjectiveSolutionContext<BinaryVector>[] solutionContexts, IRandom random) {
     80      base.Analyze(solutionContexts, random);
    8181      var best = GetBest(solutionContexts);
    8282      if (BestSolution == null || IsBetter(best, BestSolution))
Note: See TracChangeset for help on using the changeset viewer.