Changeset 8820 for branches/HeuristicLab.MetaOptimization
- Timestamp:
- 10/18/12 08:55:46 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.MetaOptimization/HeuristicLab.MetaOptimization.Test/Program.cs
r7137 r8820 32 32 PluginManager pm = new PluginManager(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location)); 33 33 pm.DiscoverAndCheckPlugins(); 34 pm.Run(pm.Applications.Where(x => x.Name == "TestApp").SingleOrDefault() );34 pm.Run(pm.Applications.Where(x => x.Name == "TestApp").SingleOrDefault(), CommandLineArgumentHandling.GetArguments(args)); 35 35 } 36 36 } … … 55 55 private static int baseAlgorithmPopulationSize = 5; 56 56 57 public override void Run( ) {57 public override void Run(ICommandLineArgument[] args) { 58 58 ContentManager.Initialize(new PersistenceContentManager()); 59 59
Note: See TracChangeset
for help on using the changeset viewer.