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.Optimization/3.3/BasicProblems/Operators/SingleObjectiveAnalyzer.cs

    r17699 r17745  
    5353    }
    5454
    55     public Action<ISingleObjectiveSolutionContext<TEncodedSolution>[], ResultCollection, IRandom> Analyze { get; set; }
     55    public Action<ISingleObjectiveSolutionContext<TEncodedSolution>[], IRandom> Analyze { get; set; }
    5656
    5757    [StorableConstructor]
     
    8282      }).ToArray();
    8383
    84       Analyze(solutionContexts, results, random);
     84      Analyze(solutionContexts, random);
    8585      foreach (var s in solutionContexts.Zip(scopes, Tuple.Create)) {
    8686        ScopeUtil.CopyToScope(s.Item2, s.Item1);
Note: See TracChangeset for help on using the changeset viewer.