Changeset 14477 for branches/MemPRAlgorithm/HeuristicLab.Tests/HeuristicLab-3.3/DeepCloneableCloningTest.cs
- Timestamp:
- 12/12/16 14:14:11 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/MemPRAlgorithm/HeuristicLab.Tests/HeuristicLab-3.3/DeepCloneableCloningTest.cs
r14209 r14477 42 42 public DeepCloneableCloningTest() { 43 43 excludedTypes = new HashSet<Type> { 44 typeof ( HeuristicLab.Problems.DataAnalysis.Dataset),45 typeof ( HeuristicLab.Problems.TravelingSalesman.DistanceMatrix),46 typeof ( HeuristicLab.Problems.DataAnalysis.ClassificationEnsembleSolution),47 typeof ( HeuristicLab.Problems.DataAnalysis.RegressionEnsembleSolution),48 typeof ( HeuristicLab.Problems.Orienteering.DistanceMatrix),49 typeof ( HeuristicLab.Problems.PTSP.DistanceMatrix)44 typeof (global::HeuristicLab.Problems.DataAnalysis.Dataset), 45 typeof (global::HeuristicLab.Problems.TravelingSalesman.DistanceMatrix), 46 typeof (global::HeuristicLab.Problems.DataAnalysis.ClassificationEnsembleSolution), 47 typeof (global::HeuristicLab.Problems.DataAnalysis.RegressionEnsembleSolution), 48 typeof (global::HeuristicLab.Problems.Orienteering.DistanceMatrix), 49 typeof (global::HeuristicLab.Problems.PTSP.DistanceMatrix) 50 50 }; 51 51 excludedTypes.Add(typeof(SymbolicExpressionGrammar).Assembly.GetType("HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.EmptySymbolicExpressionTreeGrammar")); 52 52 53 foreach (var symbolType in ApplicationManager.Manager.GetTypes(typeof( HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbol)))53 foreach (var symbolType in ApplicationManager.Manager.GetTypes(typeof(global::HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbol))) 54 54 excludedTypes.Add(symbolType); 55 55 // SimpleSymbol is a non-discoverable type and thus needs to be added manually 56 excludedTypes.Add(typeof( HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.SimpleSymbol));57 foreach (var grammarType in ApplicationManager.Manager.GetTypes(typeof( HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.SymbolicExpressionGrammarBase)))56 excludedTypes.Add(typeof(global::HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.SimpleSymbol)); 57 foreach (var grammarType in ApplicationManager.Manager.GetTypes(typeof(global::HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.SymbolicExpressionGrammarBase))) 58 58 excludedTypes.Add(grammarType); 59 59 }
Note: See TracChangeset
for help on using the changeset viewer.