Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/21/18 09:18:49 (6 years ago)
Author:
bwerth
Message:

#2943 worked on MOBasicProblem - added Interfaces;reworked MOCalculators; several minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2943_MOBasicProblem_MOCMAES/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Analyzers/ScatterPlotAnalyzer.cs

    r15583 r16171  
    5959      var individuals = IndividualsParameter.ActualValue;
    6060      var testFunction = TestFunctionParameter.ActualValue;
    61       int objectives = qualities[0].Length;
    62       int problemSize = individuals[0].Length;
     61      var objectives = qualities[0].Length;
     62      var problemSize = individuals[0].Length;
    6363
    64       double[][] optimalFront = new double[0][];
     64      var optimalFront = new double[0][];
    6565      var front = testFunction.OptimalParetoFront(objectives);
    6666      if (front != null) optimalFront = front.ToArray();
Note: See TracChangeset for help on using the changeset viewer.