Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/19/15 14:30:01 (9 years ago)
Author:
gkronber
Message:

#1966:

  • removed unused using
  • added/updated license headers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.BinPacking/HeuristicLab.Problems.BinPacking/3.3/Decoders/3D/EP/ExtremePointGroupingVectorDecoder3D.cs

    r9596 r13032  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2015 Joseph Helm and Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    2623using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2724using HeuristicLab.Core;
     
    3027using HeuristicLab.Problems.BinPacking.PackingItem;
    3128using HeuristicLab.Encodings.PackingEncoding.PackingPlan;
    32 using HeuristicLab.Encodings.PermutationEncoding;
    3329using HeuristicLab.Common;
    34 using HeuristicLab.Data;
    35 using HeuristicLab.Collections;
    36 using HeuristicLab.Encodings.PackingEncoding.PackingSequence;
    3730using HeuristicLab.Problems.BinPacking.Interfaces;
    3831using HeuristicLab.Encodings.PackingEncoding.GroupingVector;
    39 using HeuristicLab.Parameters;
    4032
    4133namespace HeuristicLab.Problems.BinPacking.Decoders {
    4234  [Item("Identical bin, three dimensional, extreme points based decoder for the GroupingVector encoding.", "<Description missing...>")]
    4335  [StorableClass]
    44   public class ExtremePointGroupingVectorDecoder3D : PackingSolutionDecoder< ThreeDimensionalPacking, CuboidPackingBin, CuboidPackingItem>, I3DGVDecoder {
    45     public ExtremePointGroupingVectorDecoder3D () : base() { }
     36  public class ExtremePointGroupingVectorDecoder3D : PackingSolutionDecoder<ThreeDimensionalPacking, CuboidPackingBin, CuboidPackingItem>, I3DGVDecoder {
     37    public ExtremePointGroupingVectorDecoder3D() : base() { }
    4638    [StorableConstructor]
    47     protected ExtremePointGroupingVectorDecoder3D (bool deserializing) : base(deserializing) { }
     39    protected ExtremePointGroupingVectorDecoder3D(bool deserializing) : base(deserializing) { }
    4840    protected ExtremePointGroupingVectorDecoder3D(ExtremePointGroupingVectorDecoder3D original, Cloner cloner)
    4941      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.