- Timestamp:
- 04/24/16 10:03:52 (9 years ago)
- Location:
- branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Menu/200_Solving
- Files:
-
- 1 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Menu/200_Solving/210_PerformanceModelingMenuItem.cs
r13772 r13787 27 27 28 28 namespace HeuristicLab.OptimizationExpertSystem.Menu { 29 internal class SolverMenuItem : MenuItemBase {29 internal class PerformanceModelingMenuItem : MenuItemBase { 30 30 public override Image Image { get { return VSImageLibrary.Event; } } 31 31 32 32 public override string Name { 33 get { return " Solver"; }33 get { return "Performance Modeling"; } 34 34 } 35 35 … … 42 42 } 43 43 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."; } } 45 45 46 46 public override void Execute() { 47 var viewType = typeof( SolverView);47 var viewType = typeof(PerformanceModelingView); 48 48 var view = MainForm.Views.FirstOrDefault(x => viewType == ((x is ViewHost) ? ((ViewHost)x).ActiveView : x).GetType()); 49 49 if (view != null) view.Show(); -
branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem/3.3/Menu/200_Solving/220_SolverMenuItem.cs
r13786 r13787 39 39 40 40 public override int Position { 41 get { return 2 10; }41 get { return 220; } 42 42 } 43 43
Note: See TracChangeset
for help on using the changeset viewer.