Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/04/17 23:00:03 (6 years ago)
Author:
abeham
Message:

#1614:

  • branched optimization
  • adapted references
  • renamed plugin
Location:
branches/GeneralizedQAP
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP

    • Property svn:ignore
      •  

        old new  
        22TestResults
        33*.user
         4.vs
  • branches/GeneralizedQAP/HeuristicLab.Problems.GeneralizedQuadraticAssignment/3.3/Analyzers/GQAPPopulationDiversityAnalyzer.cs

    r7438 r15490  
    2727using HeuristicLab.Parameters;
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    29 using HeuristicLab.Problems.GeneralizedQuadraticAssignment.Common;
    3029
    3130namespace HeuristicLab.Problems.GeneralizedQuadraticAssignment.Analyzers {
     
    7170      for (int i = 0; i < solutions.Length - 1; i++)
    7271        for (int j = i + 1; j < solutions.Length; j++) {
    73           result[i, j] = IntegerVectorEqualityComparer.GetSimilarity(solutions[i], solutions[j]);
     72          result[i, j] = HammingSimilarityCalculator.CalculateSimilarity(solutions[i], solutions[j]);
    7473          result[j, i] = result[i, j];
    7574        }
Note: See TracChangeset for help on using the changeset viewer.