Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/24/12 17:23:21 (12 years ago)
Author:
abeham
Message:

#1614: worked on GQAP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Operators/DiscreteLocationCrossover.cs

    r7319 r7407  
    2828using HeuristicLab.Parameters;
    2929using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
     30using HeuristicLab.Problems.GeneralizedQuadraticAssignment.Common;
    3031
    31 namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Operators {
     32namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment {
    3233  [Item("DiscreteLocationCrossover", "Combines the assignment to locations from various parents.")]
    3334  [StorableClass]
     
    5253
    5354    public static IntegerVector Apply(IRandom random, ItemArray<IntegerVector> parents, DoubleArray capacities) {
    54      
     55
    5556      var groupedLocations = parents
    5657              .Select(p => p.Select((value, index) => new { Equipment = index, Location = value })
Note: See TracChangeset for help on using the changeset viewer.