#region License Information
/* HeuristicLab
* Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using HeuristicLab.MainForm;
using HeuristicLab.Optimization;
using HeuristicLab.Optimizer;
using HeuristicLab.Problems.DataAnalysis.Symbolic.SegmentOptimization;
using MenuItem = HeuristicLab.MainForm.WindowsForms.MenuItem;
namespace HeuristicLab.Problems.DataAnalysis.Views {
internal sealed class ShrinkDataAnalysisRunsMenuItem : MenuItem, IOptimizerUserInterfaceItemProvider {
public override string Name {
get { return "Remove Duplicate Datasets"; }
}
public override IEnumerable Structure {
get { return new string[] { "&Edit", "&Data Analysis" }; }
}
public override int Position {
get { return 5300; }
}
public override string ToolTipText {
get { return "This command shrinks the memory usage of data analysis optimizers by checking and unifying duplicate datasets."; }
}
protected override void OnToolStripItemSet(EventArgs e) {
ToolStripItem.Enabled = false;
}
protected override void OnActiveViewChanged(object sender, EventArgs e) {
IContentView activeView = MainFormManager.MainForm.ActiveView as IContentView;
if (activeView == null) {
ToolStripItem.Enabled = false;
return;
}
var content = activeView.Content;
RunCollection runCollection = content as RunCollection;
if (runCollection == null && content is IOptimizer)
runCollection = ((IOptimizer)content).Runs;
if (runCollection == null) {
ToolStripItem.Enabled = false;
return;
}
ToolStripItem.Enabled = true;
//ToolStripItem.Enabled = runCollection.Any(run => run.Parameters.Any(p => p.Value is IDataAnalysisProblemData));
}
public override async void Execute() {
IContentView activeView = (IContentView)MainFormManager.MainForm.ActiveView;
var content = activeView.Content;
Progress.Show(content, "Removing duplicate datasets.", ProgressMode.Indeterminate);
var results = await Task.Run(() => {
DatasetUtil.RemoveDuplicateDatasets(content);
return SegmentOptimizationProblem.RemoveDuplicateMatrices(content);
});
Progress.Hide(content);
MessageBox.Show($"DoubleMatrix-Count:{results.Item1}\nDoubleMatrix-RemovedDuplicates:{results.Item2}\nQualities-Removed:{results.Item3}");
}
}
}