Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/06/15 15:36:53 (9 years ago)
Author:
mkommend
Message:

#2282: Created plugin for binary vector problems.

Location:
trunk/sources/HeuristicLab.Problems.BinaryVector
Files:
7 added
5 copied

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.BinaryVector/3.3/BinaryVectorProblem.cs

    r11945 r11956  
    11#region License Information
     2
    23/* HeuristicLab
    3  * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    45 *
    56 * This file is part of HeuristicLab.
     
    1819 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    1920 */
     21
    2022#endregion
    2123
     
    2729using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2830
    29 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
     31namespace HeuristicLab.Problems.BinaryVector {
    3032  [StorableClass]
    3133  public abstract class BinaryVectorProblem : Problem, IBinaryVectorProblem {
  • trunk/sources/HeuristicLab.Problems.BinaryVector/3.3/DeceptiveStepTrapProblem.cs

    r11945 r11956  
    11#region License Information
     2
    23/* HeuristicLab
    3  * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    4  * and the BEACON Center for the Study of Evolution in Action.
     4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    55 *
    66 * This file is part of HeuristicLab.
     
    1919 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    2020 */
     21
    2122#endregion
    2223
     
    2728using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2829
    29 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
     30namespace HeuristicLab.Problems.BinaryVector {
    3031  // This code is based off the publication
    3132  // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
  • trunk/sources/HeuristicLab.Problems.BinaryVector/3.3/DeceptiveTrapProblem.cs

    r11945 r11956  
    11#region License Information
     2
    23/* HeuristicLab
    3  * Copyright (C) 2002-2014 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    4  * and the BEACON Center for the Study of Evolution in Action.
    5  *
     4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     5 *
    66 * This file is part of HeuristicLab.
    77 *
     
    1919 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    2020 */
     21
    2122#endregion
    2223
     
    2829using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2930
    30 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
     31namespace HeuristicLab.Problems.BinaryVector {
    3132  // This code is based off the publication
    3233  // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
  • trunk/sources/HeuristicLab.Problems.BinaryVector/3.3/HIFFProblem.cs

    r11945 r11956  
    11#region License Information
     2
    23/* HeuristicLab
    3  * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    4  * and the BEACON Center for the Study of Evolution in Action.
     4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    55 *
    66 * This file is part of HeuristicLab.
     
    1919 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    2020 */
     21
    2122#endregion
    2223
    2324using System;
    24 using System.Collections.Generic;
    2525using HeuristicLab.Common;
    2626using HeuristicLab.Core;
    2727using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2828
    29 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
     29namespace HeuristicLab.Problems.BinaryVector {
    3030  // This code is based off the publication
    3131  // B. W. Goldman and W. F. Punch, "Parameter-less Population Pyramid," GECCO, pp. 785–792, 2014
     
    4848    }
    4949
    50     public HIFFProblem() : base() {
     50    public HIFFProblem()
     51      : base() {
    5152      Length = 64;
    5253    }
  • trunk/sources/HeuristicLab.Problems.BinaryVector/3.3/IBinaryVectorProblem.cs

    r11945 r11956  
    11#region License Information
     2
    23/* HeuristicLab
    3  * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     4 * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    45 *
    56 * This file is part of HeuristicLab.
     
    1819 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
    1920 */
     21
    2022#endregion
    2123
    22 namespace HeuristicLab.Algorithms.ParameterlessPopulationPyramid {
     24namespace HeuristicLab.Problems.BinaryVector {
    2325  public interface IBinaryVectorProblem {
    2426    int Length { get; }
Note: See TracChangeset for help on using the changeset viewer.