Changeset 15143 for stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Converters/TreeToAutoDiffTermConverter.cs
- Timestamp:
- 07/06/17 11:13:51 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Converters/TreeToAutoDiffTermConverter.cs
r14843 r15143 106 106 107 107 // state for recursive transformation of trees 108 private readonly List<string> variableNames;109 private readonly List<int> lags;110 108 private readonly List<double> initialConstants; 111 109 private readonly Dictionary<DataForVariable, AutoDiff.Variable> parameters; … … 115 113 private TreeToAutoDiffTermConverter(bool makeVariableWeightsVariable) { 116 114 this.makeVariableWeightsVariable = makeVariableWeightsVariable; 117 this.variableNames = new List<string>();118 this.lags = new List<int>();119 115 this.initialConstants = new List<double>(); 120 116 this.parameters = new Dictionary<DataForVariable, AutoDiff.Variable>();
Note: See TracChangeset
for help on using the changeset viewer.