- Timestamp:
- 05/04/17 17:19:35 (7 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/Classification/ClassificationSolutionComparisonView.cs
r14826 r14927 81 81 IClassificationProblemData problemData = Content.ProblemData; 82 82 solutions = new List<IClassificationSolution>() { Content }; 83 solutions.AddRange(GenerateClassificationSolutions().OrderBy(s =>s.Name));83 solutions.AddRange(GenerateClassificationSolutions().OrderBy(s => s.Name)); 84 84 85 85 dataGridView.ColumnCount = 4; -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/TimeframeFeatureCorrelationCalculator.cs
r14300 r14927 85 85 86 86 var error = OnlineCalculatorError.None; 87 elements[i, j] = calc.Calculate(var1.Skip(j), var2.Take(var1.Length -j), out error);87 elements[i, j] = calc.Calculate(var1.Skip(j), var2.Take(var1.Length - j), out error); 88 88 89 89 if (!error.Equals(OnlineCalculatorError.None)) { -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj
r14926 r14927 544 544 <Name>HeuristicLab.Parameters.Views-3.3</Name> 545 545 <Private>False</Private> 546 </ProjectReference> 547 <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj"> 548 <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project> 549 <Name>HeuristicLab.Persistence-3.3</Name> 546 550 </ProjectReference> 547 551 <ProjectReference Include="..\..\HeuristicLab.Persistence\4.0\HeuristicLab.Persistence-4.0.csproj"> -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/Interfaces/IDataAnalysisSolutionEvaluationView.cs
r14185 r14927 24 24 using HeuristicLab.MainForm; 25 25 namespace HeuristicLab.Problems.DataAnalysis.Views { 26 public interface IDataAnalysisSolutionEvaluationView : IContentView {26 public interface IDataAnalysisSolutionEvaluationView : IContentView { 27 27 Image ViewImage { get; } 28 28 } -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/Interfaces/IPartialDependencePlot.cs
r14852 r14927 25 25 public interface IPartialDependencePlot { 26 26 Task RecalculateAsync(bool updateOnFinish, bool resetYAxis); 27 double YMin { get; 27 double YMin { get; } 28 28 double YMax { get; } 29 29 double? FixedYAxisMin { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/MenuItems/ShrinkDataAnalysisRunsMenuItem.cs
r14185 r14927 90 90 }; 91 91 92 action.BeginInvoke(activeView, delegate (IAsyncResult result) {92 action.BeginInvoke(activeView, delegate (IAsyncResult result) { 93 93 action.EndInvoke(result); 94 94 mainForm.RemoveOperationProgressFromContent(activeView.Content); -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/Regression/RegressionSolutionResidualAnalysisView.cs
r14889 r14927 124 124 while (run.Results.ContainsKey(resId)) resId += "_"; 125 125 var relErrorId = "Rel. Error"; 126 while (run.Results.ContainsKey(relErrorId)) relErrorId += "_";126 while (run.Results.ContainsKey(relErrorId)) relErrorId += "_"; 127 127 run.Results.Add(predId, new DoubleValue(pred)); 128 128 run.Results.Add(resId, new DoubleValue(residual)); -
branches/PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Views/3.4/Solution Views/DataAnalysisSolutionView.cs
r14770 r14927 146 146 solution.Name += " with loaded problemData"; 147 147 MainFormManager.MainForm.ShowContent(solution); 148 } 149 catch (InvalidOperationException invalidOperationException) { 148 } catch (InvalidOperationException invalidOperationException) { 150 149 ErrorHandling.ShowErrorDialog(this, invalidOperationException); 151 } 152 catch (ArgumentException argumentException) { 150 } catch (ArgumentException argumentException) { 153 151 ErrorHandling.ShowErrorDialog(this, argumentException); 154 152 } … … 233 231 if (!Content.Name.EndsWith(" with changed problemData")) 234 232 Content.Name += " with changed problemData"; 235 } 236 catch (InvalidOperationException invalidOperationException) { 233 } catch (InvalidOperationException invalidOperationException) { 237 234 ErrorHandling.ShowErrorDialog(this, invalidOperationException); 238 } 239 catch (ArgumentException argumentException) { 235 } catch (ArgumentException argumentException) { 240 236 ErrorHandling.ShowErrorDialog(this, argumentException); 241 237 }
Note: See TracChangeset
for help on using the changeset viewer.