Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/26/12 00:36:45 (12 years ago)
Author:
abeham
Message:

#1614

  • renamed AssemblyInfo frame files to proper name
  • fixed discovery of move operators
  • fixed a bug in the move evaluator
  • fixed a bug in the DiscreteLocationCrossover
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Evaluators/GQAPNMoveEvaluator.cs

    r7412 r7413  
    180180      MoveFlowDistanceQualityParameter.ActualValue = new DoubleValue(flowDistanceQuality + moveFlowDistanceQuality);
    181181      MoveInstallationQualityParameter.ActualValue = new DoubleValue(installationQuality + moveInstallationQuality);
    182       MoveOverbookedCapacityParameter.ActualValue = new DoubleValue(moveOverbookedCapacity);
     182      MoveOverbookedCapacityParameter.ActualValue = new DoubleValue(overbookedCapacity + moveOverbookedCapacity);
    183183
    184184      MoveQualityParameter.ActualValue = new DoubleValue(GQAPEvaluator.GetCombinedQuality(
    185185        flowDistanceQuality + moveFlowDistanceQuality,
    186186        installationQuality + moveInstallationQuality,
    187         moveOverbookedCapacity,
     187        overbookedCapacity + moveOverbookedCapacity,
    188188        transportationCosts,
    189189        overbookedCapacityPenalty));
Note: See TracChangeset for help on using the changeset viewer.