Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/22/10 00:44:01 (14 years ago)
Author:
swagner
Message:

Sorted usings and removed unused usings in entire solution (#1094)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting/3.3/Encodings/VRPCrossover.cs

    r3938 r4068  
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
    2622using HeuristicLab.Core;
     23using HeuristicLab.Data;
    2724using HeuristicLab.Operators;
    2825using HeuristicLab.Parameters;
    29 using HeuristicLab.Data;
    3026
    3127namespace HeuristicLab.Problems.VehicleRouting.Encodings {
    32   public abstract class VRPCrossover: SingleSuccessorOperator, IVRPCrossover {
     28  public abstract class VRPCrossover : SingleSuccessorOperator, IVRPCrossover {
    3329    #region IVRPCrossover Members
    3430
     
    5046      ChildParameter.ActualName = "VRPSolution";
    5147      Parameters.Add(new ValueLookupParameter<IntValue>("Cities", "The city count."));
    52     } 
     48    }
    5349  }
    5450}
Note: See TracChangeset for help on using the changeset viewer.