- Timestamp:
- 01/16/14 16:37:56 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.TravelingSalesman/3.3/TravelingSalesmanProblem.cs
r10300 r10347 29 29 using HeuristicLab.Data; 30 30 using HeuristicLab.Encodings.PermutationEncoding; 31 using HeuristicLab.EvolutionTracking; 31 32 using HeuristicLab.Optimization; 32 33 using HeuristicLab.Parameters; … … 386 387 if (TSPGenealogyAnalyzer != null) { 387 388 if (TSPCrossover != null) { 389 TSPGenealogyAnalyzer.BeforeCrossoverOperator = new BeforeCrossoverOperator<Permutation>(); 390 TSPGenealogyAnalyzer.AfterCrossoverOperator = new AfterCrossoverOperator<Permutation>(); 388 391 TSPGenealogyAnalyzer.CrossoverParentsParameterName = TSPCrossover.ParentsParameter.Name; 389 392 TSPGenealogyAnalyzer.CrossoverChildParameterName = TSPCrossover.ChildParameter.Name; 390 393 } 391 394 if (TSPManipulator != null) { 395 TSPGenealogyAnalyzer.BeforeManipulatorOperator = new BeforeManipulatorOperator<Permutation>(); 396 TSPGenealogyAnalyzer.AfterManipulatorOperator = new AfterManipulatorOperator<Permutation>(); 392 397 TSPGenealogyAnalyzer.ManipulatorChildParameterName = TSPManipulator.PermutationParameter.Name; 393 398 }
Note: See TracChangeset
for help on using the changeset viewer.