Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/26/19 10:02:47 (5 years ago)
Author:
abeham
Message:

#2521: worked on removing virtual from Maximization for single-objective problems

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.NK/3.3/NKLandscape.cs

    r17226 r17270  
    2323using System.Linq;
    2424using System.Security.Cryptography;
     25using HEAL.Attic;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
     
    2829using HeuristicLab.Encodings.BinaryVectorEncoding;
    2930using HeuristicLab.Parameters;
    30 using HEAL.Attic;
    3131using HeuristicLab.PluginInfrastructure;
    32 using HeuristicLab.Problems.Binary;
    3332using HeuristicLab.Random;
    3433
     
    3837  [StorableType("04294537-87F2-4A9F-BC14-7D4CA700F326")]
    3938  public sealed class NKLandscape : BinaryVectorProblem {
    40     public override bool Maximization {
    41       get { return false; }
    42     }
    4339
    4440    #region Parameters
     
    144140    public NKLandscape()
    145141      : base() {
     142      Maximization = false;
    146143      random = new MersenneTwister();
    147144
Note: See TracChangeset for help on using the changeset viewer.