Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemRefactoring/HeuristicLab.Problems.ExternalEvaluation/3.4/Programmable/CompiledMultiObjectiveOptimizationSupport.cs @ 13402

Last change on this file since 13402 was 13372, checked in by mkommend, 9 years ago

#2521: Fixed all problems.

File size: 603 bytes
RevLine 
[13257]1using HeuristicLab.Core;
[11753]2using HeuristicLab.Optimization;
3
[11893]4namespace HeuristicLab.Problems.ExternalEvaluation {
[13183]5  public class CompiledMultiObjectiveOptimizationSupport : CompiledOptimizationSupport, IMultiObjectiveOptimizationSupport {
[11753]6
[13372]7    public void Analyze(ISolution[] individuals, double[][] qualities, ResultCollection results, IRandom random) {
[11880]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
[11753]10    }
11
[11880]12    // Implement further classes and methods
[11753]13  }
14}
Note: See TracBrowser for help on using the repository browser.