Free cookie consent management tool by TermsFeed Policy Generator

Changeset 6088


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

#1330

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

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.QuadraticAssignment/3.3/QuadraticAssignmentProblem.cs

    r6042 r6088  
    235235    private void InitializeOperators() {
    236236      Operators.AddRange(ApplicationManager.Manager.GetInstances<IPermutationOperator>());
     237      Operators.RemoveAll(x => x is ISingleObjectiveMoveEvaluator);
     238      Operators.AddRange(ApplicationManager.Manager.GetInstances<IQAPMoveEvaluator>());
    237239      Operators.Add(new BestQAPSolutionAnalyzer());
    238240      ParameterizeAnalyzers();
Note: See TracChangeset for help on using the changeset viewer.