Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/11/15 11:21:44 (8 years ago)
Author:
bwerth
Message:

#1087 implemented more Testfunctions; enabled setting of SolutionSize

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Testfunctions/Evaluators.cs

    r13421 r13448  
    226226    //original paper not accessible + wikipedia definition works only with fixed (3) dimensions
    227227    //http://darwin.di.uminho.pt/jecoli/index.php/Multiobjective_example [30.11.2015]
    228     private double[] Kursawe(RealVector r) { //no Bounds??
     228    private double[] Kursawe(RealVector r) { //-5,5
    229229      //objective 1
    230230      double f0 = 0.0;
     
    241241      return res;
    242242    }
    243 
    244243    //http://www.eng.buffalo.edu/Research/MODEL/mdo.test.orig/class2prob4/descr.html
    245244    //TODO this is not multi-objective
     
    305304      return res;
    306305    }
    307     private double[] Schaffer1(RealVector r) { //-5,10??
     306    private double[] Schaffer1(RealVector r) { //-A,A
    308307      if (r.Length != 1) return null;
    309308      double x = r[0];
Note: See TracChangeset for help on using the changeset viewer.