Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/27/10 11:44:36 (14 years ago)
Author:
gkronber
Message:

Fixed bugs in persistence of grammars.#937 (Data types and operators for symbolic expression tree encoding)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis.Regression/3.3/Symbolic/SymbolicRegressionModel.cs

    r3513 r3541  
    5050      get { return interpreter; }
    5151    }
     52    private List<string> inputVariables;
    5253    [Storable]
    53     private List<string> inputVariables;
    5454    public IEnumerable<string> InputVariables {
    5555      get { return inputVariables.AsEnumerable(); }
     56      set {
     57        if (value != null)
     58          inputVariables = new List<string>(value);
     59      }
    5660    }
    5761    public SymbolicRegressionModel() : base() { } // for cloning
Note: See TracChangeset for help on using the changeset viewer.