Changeset 12891 for branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4
- Timestamp:
- 08/22/15 14:27:37 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/Exporters/SymbolicSolutionExcelExporter.cs
r12155 r12891 324 324 } 325 325 326 protected void WriteInputSheet(ExcelWorksheet inputsWorksheet, ExcelWorksheet datasetWorksheet, IEnumerable<string> list, Dataset dataset) {326 protected void WriteInputSheet(ExcelWorksheet inputsWorksheet, ExcelWorksheet datasetWorksheet, IEnumerable<string> list, IDataset dataset) { 327 327 //remark the performance of EPPlus drops dramatically 328 328 //if the data is not written row wise (from left to right) due the internal indices used. … … 341 341 //remark the performance of EPPlus drops dramatically 342 342 //if the data is not written row wise (from left to right) due the internal indices used. 343 Dataset dataset = problemData.Dataset;343 IDataset dataset = problemData.Dataset; 344 344 var variableNames = dataset.VariableNames.ToList(); 345 345 var doubleVariables = new HashSet<string>(dataset.DoubleVariables);
Note: See TracChangeset
for help on using the changeset viewer.