Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/14/16 13:34:21 (8 years ago)
Author:
mkommend
Message:

#1087: Refactored multi-objective test functions.

File:
1 edited

Legend:

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

    r13771 r14067  
    3939    }
    4040
    41     public override int MinimumSolutionLength {
    42       get { return 1; }
    43     }
    44 
    45     public override int MaximumSolutionLength {
    46       get { return 1; }
    47     }
    48 
    49     public override int MinimumObjectives {
    50       get { return 2; }
    51     }
    52 
    53     public override int MaximumObjectives {
    54       get { return 2; }
    55     }
    56 
    5741    public override double[] ReferencePoint(int objecitves) {
    5842      return new double[] { 100, 100 };
     
    7256
    7357    public SchafferN2() : base(minimumObjectives: 2, maximumObjectives: 2, minimumSolutionLength: 1, maximumSolutionLength: 1) { }
    74 
    75 
    76 
    7758
    7859
Note: See TracChangeset for help on using the changeset viewer.