Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/CompiledMultiObjectiveOptimizationSupport.cs @ 16751

Last change on this file since 16751 was 16751, checked in by mkommend, 5 years ago

#2521: Renamed Solution to EncodedSolution.

File size: 610 bytes
Line 
1using HeuristicLab.Core;
2using HeuristicLab.Optimization;
3
4namespace HeuristicLab.Problems.ExternalEvaluation {
5  public class CompiledMultiObjectiveOptimizationSupport : CompiledOptimizationSupport, IMultiObjectiveOptimizationSupport {
6
7    public void Analyze(IEncodedSolution[] individuals, double[][] qualities, ResultCollection results, IRandom random) {
8      // Use vars.yourVariable to access variables in the variable store i.e. yourVariable
9      // Write or update results given the range of vectors and resulting qualities
10    }
11
12    // Implement further classes and methods
13  }
14}
Note: See TracBrowser for help on using the repository browser.