Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/18/19 13:42:12 (5 years ago)
Author:
mkommend
Message:

#2521: Adapted binary problems and moved to abstract base class to encoding.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.Binary/3.3/DeceptiveTrapProblem.cs

    r16723 r16814  
    2323
    2424using System;
     25using HEAL.Attic;
    2526using HeuristicLab.Common;
    2627using HeuristicLab.Core;
     
    2829using HeuristicLab.Encodings.BinaryVectorEncoding;
    2930using HeuristicLab.Parameters;
    30 using HEAL.Attic;
    3131
    3232namespace HeuristicLab.Problems.Binary {
     
    3434  [StorableType("399FFE01-2B76-4DBF-B363-8BB65FE95A5D")]
    3535  [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 230)]
    36   public class DeceptiveTrapProblem : BinaryProblem {
     36  public class DeceptiveTrapProblem : BinaryVectorProblem {
    3737    [StorableConstructor]
    3838    protected DeceptiveTrapProblem(StorableConstructorFlag _) : base(_) { }
     
    6363    }
    6464
    65     public DeceptiveTrapProblem()
    66       : base() {
     65    public DeceptiveTrapProblem() : base() {
    6766      Parameters.Add(new FixedValueParameter<IntValue>(TrapSizeParameterName, "", new IntValue(7)));
    6867      Encoding.Length = 49;
Note: See TracChangeset for help on using the changeset viewer.