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/SchafferN2.cs

    r13421 r13448  
    1313namespace HeuristicLab.Problems.TestFunctions {
    1414  [Item("SchafferN2", "from // https://en.wikipedia.org/wiki/Test_functions_for_optimization [30.11.2015]")]
    15   [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 210)]
    1615  [StorableClass]
    1716  public class SchafferN2 : MultiObjectiveTestFunction {
     
    5352    }
    5453
     54    public override int ActualSolutionSize {
     55      get {
     56        return 2;
     57      }
     58
     59      set {
     60      }
     61    }
     62
    5563    [StorableConstructor]
    5664    protected SchafferN2(bool deserializing) : base(deserializing) { }
Note: See TracChangeset for help on using the changeset viewer.