Free cookie consent management tool by TermsFeed Policy Generator

Changeset 14209


Ignore:
Timestamp:
07/23/16 23:25:08 (8 years ago)
Author:
abeham
Message:

#2526: manually excluded SimpleSymbol from the types checked for deep clonability (it's a non-discoverable type)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/DeepCloneableCloningTest.cs

    r14185 r14209  
    5353      foreach (var symbolType in ApplicationManager.Manager.GetTypes(typeof(HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbol)))
    5454        excludedTypes.Add(symbolType);
     55      // SimpleSymbol is a non-discoverable type and thus needs to be added manually
     56      excludedTypes.Add(typeof(HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.SimpleSymbol));
    5557      foreach (var grammarType in ApplicationManager.Manager.GetTypes(typeof(HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.SymbolicExpressionGrammarBase)))
    5658        excludedTypes.Add(grammarType);
Note: See TracChangeset for help on using the changeset viewer.