Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8820


Ignore:
Timestamp:
10/18/12 08:55:46 (12 years ago)
Author:
jkarder
Message:

#1926: updated DataImporter and MetaOptimization branches to work with the changes of r8818

Location:
branches
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter.DataProcessor/HeuristicLabDataImporterDataProcessorApplication.cs

    r7267 r8820  
    3030  [Application("DataImporter", "Generic data import, export and manipulation toolkit.")]
    3131  public class HeuristicLabDataImporterDataProcessorApplication : ApplicationBase {
    32     public override void Run() {
     32    public override void Run(ICommandLineArgument[] args) {
    3333      DataProcessor processor = new DataProcessor();
    3434      Form mainForm = new DataProcessorView(processor);
  • branches/HeuristicLab.MetaOptimization/HeuristicLab.MetaOptimization.Test/Program.cs

    r7137 r8820  
    3232      PluginManager pm = new PluginManager(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location));
    3333      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));
    3535    }
    3636  }
     
    5555    private static int baseAlgorithmPopulationSize = 5;
    5656
    57     public override void Run() {
     57    public override void Run(ICommandLineArgument[] args) {
    5858      ContentManager.Initialize(new PersistenceContentManager());
    5959
Note: See TracChangeset for help on using the changeset viewer.