Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/04/16 09:47:19 (8 years ago)
Author:
bwerth
Message:

#1087 moved project bugfixes

File:
1 edited

Legend:

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

    r13936 r13988  
    3939    }
    4040
    41     public override int MinimumSolutionLength
    42     {
     41    public override int MinimumSolutionLength {
    4342      get { return 1; }
    4443    }
    45     public override int MaximumSolutionLength
    46     {
     44    public override int MaximumSolutionLength {
    4745      get { return int.MaxValue; }
    4846    }
    4947
    50 
    51     public override int MinimumObjectives
    52     {
     48    public override int MinimumObjectives {
    5349      get { return 2; }
    5450    }
    5551
    56     public override int MaximumObjectives
    57     {
     52    public override int MaximumObjectives {
    5853      get { return 2; }
    5954    }
    60 
    6155
    6256    public override double[] ReferencePoint(int objecitves) {
    6357      return new double[] { 11, 11 };
    6458    }
    65 
    6659
    6760    public override IEnumerable<double[]> OptimalParetoFront(int objecitves) {
     
    7366        res.Add(this.Evaluate(r, 2));
    7467      }
    75 
    76 
    7768      return res;
    7869    }
Note: See TracChangeset for help on using the changeset viewer.