Changeset 17434 for branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/VariableBase.cs
- Timestamp:
- 02/11/20 13:36:02 (5 years ago)
- Location:
- branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic
- Property svn:mergeinfo changed
-
branches/1772_HeuristicLab.EvolutionTracking/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/VariableBase.cs
r16130 r17434 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-2018Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 28 [Storable Class]28 [StorableType("F8A6AD96-28D9-4BEC-8392-8B7BA824B085")] 29 29 public abstract class VariableBase : Symbol, IVariableSymbol { 30 30 #region Properties … … 152 152 153 153 [StorableConstructor] 154 protected VariableBase(bool deserializing) 155 : base(deserializing) { 154 protected VariableBase(StorableConstructorFlag _) : base(_) { 156 155 variableNames = new List<string>(); 157 156 allVariableNames = new List<string>();
Note: See TracChangeset
for help on using the changeset viewer.