Free cookie consent management tool by TermsFeed Policy Generator

Changeset 5766 for trunk/sources


Ignore:
Timestamp:
03/19/11 11:32:21 (13 years ago)
Author:
mkommend
Message:

#1325: Corrected deserialization of VariableCondition symbol.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Symbolic/Symbols/VariableCondition.cs

    r5483 r5766  
    144144    #region persistence and cloning
    145145    [StorableConstructor]
    146     private VariableCondition(bool deserializing) : base(deserializing) { }
     146    private VariableCondition(bool deserializing)
     147      : base(deserializing) {
     148      variableNames = new List<string>();
     149    }
    147150    private VariableCondition(VariableCondition original, Cloner cloner)
    148151      : base(original, cloner) {
Note: See TracChangeset for help on using the changeset viewer.