Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
02/13/10 04:37:49 (14 years ago)
Author:
swagner
Message:

Operator architecture refactoring (#95)

  • implemented reviewers' comments
  • added additional plugins HeuristicLab.Evolutionary, HeuristicLab.Permutation, HeuristicLab.Selection, and HeuristicLab.Routing.TSP
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Optimizer/3.3/HeuristicLabOptimizerApplication.cs

    r2656 r2790  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2009 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2020#endregion
    2121
    22 using System;
    23 using System.Collections.Generic;
    24 using System.Text;
    25 using System.Reflection;
    2622using System.Windows.Forms;
    2723using HeuristicLab.PluginInfrastructure;
    28 using HeuristicLab.Common.Resources;
    29 using HeuristicLab.MainForm;
    30 using HeuristicLab.MainForm.WindowsForms;
    3124
    3225namespace HeuristicLab.Optimizer {
     
    3528    public override void Run() {
    3629      OptimizerMainForm mainForm = new OptimizerMainForm(typeof(IOptimizerUserInterfaceItemProvider));
    37       mainForm.ViewClosed += new EventHandler<ViewEventArgs>(FileManager.ViewClosed);
    3830      Application.Run(mainForm);
    3931    }
Note: See TracChangeset for help on using the changeset viewer.