Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/24/16 10:03:52 (8 years ago)
Author:
abeham
Message:

#2457: worked on performance modeling

File:
1 copied

Legend:

Unmodified
Added
Removed
  • branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Menu/200_Solving/210_PerformanceModelingMenuItem.cs

    r13772 r13787  
    2727
    2828namespace HeuristicLab.OptimizationExpertSystem.Menu {
    29   internal class SolverMenuItem : MenuItemBase {
     29  internal class PerformanceModelingMenuItem : MenuItemBase {
    3030    public override Image Image { get { return VSImageLibrary.Event; } }
    3131
    3232    public override string Name {
    33       get { return "Solver"; }
     33      get { return "Performance Modeling"; }
    3434    }
    3535
     
    4242    }
    4343
    44     public override string ToolTipText { get { return "Solve the problem instance."; } }
     44    public override string ToolTipText { get { return "Modeling algorithm performance to suggest well-suited instances."; } }
    4545
    4646    public override void Execute() {
    47       var viewType = typeof(SolverView);
     47      var viewType = typeof(PerformanceModelingView);
    4848      var view = MainForm.Views.FirstOrDefault(x => viewType == ((x is ViewHost) ? ((ViewHost)x).ActiveView : x).GetType());
    4949      if (view != null) view.Show();
Note: See TracChangeset for help on using the changeset viewer.