Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/06/17 11:13:51 (7 years ago)
Author:
gkronber
Message:

#2697: merged r14845, r14851, r14854

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stable/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Converters/TreeToAutoDiffTermConverter.cs

    r14843 r15143  
    106106
    107107    // state for recursive transformation of trees
    108     private readonly List<string> variableNames;
    109     private readonly List<int> lags;
    110108    private readonly List<double> initialConstants;
    111109    private readonly Dictionary<DataForVariable, AutoDiff.Variable> parameters;
     
    115113    private TreeToAutoDiffTermConverter(bool makeVariableWeightsVariable) {
    116114      this.makeVariableWeightsVariable = makeVariableWeightsVariable;
    117       this.variableNames = new List<string>();
    118       this.lags = new List<int>();
    119115      this.initialConstants = new List<double>();
    120116      this.parameters = new Dictionary<DataForVariable, AutoDiff.Variable>();
Note: See TracChangeset for help on using the changeset viewer.