- Timestamp:
- 12/13/18 15:18:08 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/SymbolicDataAnalysisExpressionTreeNativeInterpreter.cs ΒΆ
r16378 r16379 125 125 private void InitCache(IDataset dataset) { 126 126 this.dataset = dataset; 127 128 // free handles to old data 129 if (cachedData != null) { 130 foreach (var gch in cachedData.Values) { 131 gch.Free(); 132 } 133 cachedData = null; 134 } 135 136 // cache new data 127 137 cachedData = new Dictionary<string, GCHandle>(); 128 138 foreach (var v in dataset.DoubleVariables) {
Note: See TracChangeset
for help on using the changeset viewer.