Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/08/16 15:33:39 (9 years ago)
Author:
abeham
Message:

#2457: worked on expert system, created new application, merged trunk change of r13666

Location:
branches/PerformanceComparison
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison

  • branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Plugin.cs.frame

    r12847 r13667  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2015 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2020#endregion
    2121
     22using System.Windows.Forms;
     23using HeuristicLab.Clients.Access;
    2224using HeuristicLab.PluginInfrastructure;
    2325
    24 namespace HeuristicLab.OptimizationExpertSystem.Views {
     26namespace HeuristicLab.OptimizationExpertSystem {
    2527  /// <summary>
    26   /// Plugin class for HeuristicLab.OptimizationExpertSystem.Views plugin.
     28  /// Plugin class for HeuristicLab.OptimizationExpertSystem plugin.
    2729  /// </summary>
    28   [Plugin("HeuristicLab.OptimizationExpertSystem.Views", "3.3.12.$WCREV$")]
    29   [PluginFile("HeuristicLab.OptimizationExpertSystem.Views-3.3.dll", PluginFileType.Assembly)]
     30  [Plugin("HeuristicLab.OptimizationExpertSystem", "3.3.12.$WCREV$")]
     31  [PluginFile("HeuristicLab.OptimizationExpertSystem-3.3.dll", PluginFileType.Assembly)]
    3032  [PluginDependency("HeuristicLab.Analysis", "3.3")]
    3133  [PluginDependency("HeuristicLab.Collections", "3.3")]
     
    3638  [PluginDependency("HeuristicLab.Operators", "3.3")]
    3739  [PluginDependency("HeuristicLab.Optimization", "3.3")]
    38   [PluginDependency("HeuristicLab.OptimizationExpertSystem", "3.3")]
     40  [PluginDependency("HeuristicLab.OptimizationExpertSystem.Common", "3.3")]
    3941  [PluginDependency("HeuristicLab.Persistence", "3.3")]
    40   public class HeuristicLabOptimizationExpertSystemViewsPlugin : PluginBase {
     42  public class HeuristicLabOptimizationExpertSystemPlugin : PluginBase {
     43  }
     44
     45  [Application("Optimization Expert System", "HeuristicLab Optimization Expert System 3.3.13.$WCREV$")]
     46  internal class HeuristicLabOptimizationExpertSystemApplication : ApplicationBase {
     47    public override void Run(ICommandLineArgument[] args) {
     48      HeuristicLab.MainForm.WindowsForms.MainForm mainForm = new OptimizationExpertSystem(typeof(IOptimizationExpertSystemUi));
     49     
     50      ClientInformation.InitializeAsync();
     51      UserInformation.InitializeAsync();
     52
     53      mainForm.ShowContentInViewHost = true;
     54      Application.Run(mainForm);
     55    }
    4156  }
    4257}
Note: See TracChangeset for help on using the changeset viewer.