- Timestamp:
- 07/10/15 11:51:51 (9 years ago)
- Location:
- stable
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.DataAnalysis.Views
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Problems.DataAnalysis.Views/3.4/FeatureCorrelation/FeatureCorrelationCalculator.cs
r12009 r12702 72 72 } 73 73 74 private void CalculateElements( Dataset dataset, IDependencyCalculator calc, string partition, string variable = null, int frames = 0, double[,] alreadyCalculated = null) {74 private void CalculateElements(IDataset dataset, IDependencyCalculator calc, string partition, string variable = null, int frames = 0, double[,] alreadyCalculated = null) { 75 75 var indices = GetRelevantIndices(problemData, partition); 76 76 bwInfo = new BackgroundWorkerInfo { … … 117 117 118 118 BackgroundWorkerInfo bwInfo = (BackgroundWorkerInfo)e.Argument; 119 Datasetdataset = bwInfo.Dataset;119 var dataset = bwInfo.Dataset; 120 120 IEnumerable<int> indices = bwInfo.Indices; 121 121 IDependencyCalculator calc = bwInfo.Calculator; … … 156 156 157 157 BackgroundWorkerInfo bwInfo = (BackgroundWorkerInfo)e.Argument; 158 Datasetdataset = bwInfo.Dataset;158 var dataset = bwInfo.Dataset; 159 159 IEnumerable<int> indices = bwInfo.Indices; 160 160 IDependencyCalculator calc = bwInfo.Calculator; … … 255 255 256 256 private class BackgroundWorkerInfo { 257 public Dataset Dataset { get; set; }257 public IDataset Dataset { get; set; } 258 258 public IDependencyCalculator Calculator { get; set; } 259 259 public string Partition { get; set; }
Note: See TracChangeset
for help on using the changeset viewer.