Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14851 for trunk


Ignore:
Timestamp:
04/11/17 18:26:01 (7 years ago)
Author:
gkronber
Message:

#2697: removed unnecessary variables

File:
1 edited

Legend:

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

    r14843 r14851  
    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.