Changeset 4068 for trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm
- Timestamp:
- 07/22/10 00:44:01 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithm.cs
r3816 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 23 using System.Linq; 24 using HeuristicLab.Analysis; 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Data; 28 using HeuristicLab.Operators;29 28 using HeuristicLab.Optimization; 30 29 using HeuristicLab.Optimization.Operators; … … 33 32 using HeuristicLab.PluginInfrastructure; 34 33 using HeuristicLab.Random; 35 using HeuristicLab.Analysis;36 34 37 35 namespace HeuristicLab.Algorithms.GeneticAlgorithm { -
trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/GeneticAlgorithmMainLoop.cs
r3750 r4068 20 20 #endregion 21 21 22 using HeuristicLab.Analysis;23 using HeuristicLab.Common;24 22 using HeuristicLab.Core; 25 23 using HeuristicLab.Data; -
trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithm.cs
r3816 r4068 21 21 22 22 using System; 23 using System.Collections.Generic;24 23 using System.Linq; 24 using HeuristicLab.Analysis; 25 25 using HeuristicLab.Common; 26 26 using HeuristicLab.Core; … … 33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; 35 using HeuristicLab.Selection;36 using HeuristicLab.Analysis;37 35 38 36 namespace HeuristicLab.Algorithms.GeneticAlgorithm { … … 217 215 Parameters.Add(new ValueParameter<MultiAnalyzer>("Analyzer", "The operator used to analyze the islands.", new MultiAnalyzer())); 218 216 Parameters.Add(new ValueParameter<MultiAnalyzer>("IslandAnalyzer", "The operator used to analyze each island.", new MultiAnalyzer())); 219 217 220 218 RandomCreator randomCreator = new RandomCreator(); 221 219 SubScopesCreator populationCreator = new SubScopesCreator(); -
trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/IslandGeneticAlgorithmMainLoop.cs
r3750 r4068 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using HeuristicLab.Analysis;26 using HeuristicLab.Common;27 22 using HeuristicLab.Core; 28 23 using HeuristicLab.Data; … … 32 27 using HeuristicLab.Parameters; 33 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 34 using HeuristicLab.PluginInfrastructure;35 29 using HeuristicLab.Selection; 36 30 -
trunk/sources/HeuristicLab.Algorithms.GeneticAlgorithm/3.3/Tests/Properties/AssemblyInfo.cs
r3742 r4068 21 21 22 22 using System.Reflection; 23 using System.Runtime.CompilerServices;24 23 using System.Runtime.InteropServices; 25 24
Note: See TracChangeset
for help on using the changeset viewer.