- Timestamp:
- 05/17/11 17:16:33 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceSpeedUp/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/Clustering/ClusteringProblemData.cs
r5809 r6228 20 20 #endregion 21 21 22 using System;23 22 using System.Collections.Generic; 24 23 using System.IO; 25 using System.Linq;26 24 using HeuristicLab.Common; 27 25 using HeuristicLab.Core; 28 using HeuristicLab.Data;29 using HeuristicLab.Parameters;30 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 31 27 … … 76 72 [StorableConstructor] 77 73 private ClusteringProblemData(bool deserializing) : base(deserializing) { } 78 [StorableHook(HookType.AfterDeserialization)]79 private void AfterDeserialization() {80 }81 82 74 83 75 private ClusteringProblemData(ClusteringProblemData original, Cloner cloner)
Note: See TracChangeset
for help on using the changeset viewer.