Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6089


Ignore:
Timestamp:
05/01/11 15:50:44 (13 years ago)
Author:
abeham
Message:

#1469

  • Fixed an issue were a TSP move evaluator could be selected in the QAP
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/histogram/HeuristicLab.Problems.QuadraticAssignment/3.3/QuadraticAssignmentProblem.cs

    r6086 r6089  
    270270    private void InitializeOperators() {
    271271      Operators.AddRange(ApplicationManager.Manager.GetInstances<IPermutationOperator>());
     272      Operators.RemoveAll(x => x is ISingleObjectiveMoveEvaluator);
     273      Operators.AddRange(ApplicationManager.Manager.GetInstances<IQAPMoveEvaluator>());
    272274      Operators.Add(new BestQAPSolutionAnalyzer());
    273275      Operators.Add(new QAPAlleleFrequencyAnalyzer());
Note: See TracChangeset for help on using the changeset viewer.