Changeset 3651 for trunk/sources/HeuristicLab.Problems.ArtificialAnt
- Timestamp:
- 05/05/10 19:50:46 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.ArtificialAnt/3.3/ArtificialAntProblem.cs
r3631 r3651 38 38 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Interfaces; 39 39 using HeuristicLab.Problems.ArtificialAnt.Analyzers; 40 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Analyzers; 40 41 41 42 namespace HeuristicLab.Problems.ArtificialAnt { … … 299 300 operators.AddRange(ApplicationManager.Manager.GetInstances<ISymbolicExpressionTreeOperator>().OfType<IOperator>()); 300 301 operators.Add(new PopulationBestAntTrailAnalyzer()); 302 operators.Add(new PopulationMinAvgMaxTreeSizeAnalyzer()); 301 303 ParameterizeAnalyzers(); 302 304 ParameterizeOperators(); … … 320 322 analyzer.MaxTimeStepsParameter.ActualName = MaxTimeStepsParameter.Name; 321 323 } 324 foreach (ISymbolicExpressionTreePopulationAnalyzer analyzer in Operators.OfType<ISymbolicExpressionTreePopulationAnalyzer>()) { 325 analyzer.SymbolicExpressionTreeParameter.ActualName = SolutionCreator.SymbolicExpressionTreeParameter.ActualName; 326 } 322 327 } 323 328
Note: See TracChangeset
for help on using the changeset viewer.