Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/Cube.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Symbols/Cube.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 26 26 namespace HeuristicLab.Problems.DataAnalysis.Symbolic { 27 [Storable Class]27 [StorableType("99766C72-9ED8-4C02-BC44-7620D49AFADB")] 28 28 [Item("Cube", "Symbol that represents the cube function.")] 29 29 public sealed class Cube : Symbol { … … 39 39 40 40 [StorableConstructor] 41 private Cube( bool deserializing) : base(deserializing) { }41 private Cube(StorableConstructorFlag _) : base(_) { } 42 42 private Cube(Cube original, Cloner cloner) : base(original, cloner) { } 43 43 public override IDeepCloneable Clone(Cloner cloner) {
Note: See TracChangeset
for help on using the changeset viewer.