Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/ModelCreation/NcaModelCreator.cs
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/ModelCreation/NcaModelCreator.cs
r16692 r16723 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 27 27 using HeuristicLab.Operators; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 using HeuristicLab.Problems.DataAnalysis; 31 31 32 32 namespace HeuristicLab.Algorithms.DataAnalysis { 33 33 [Item("NcaModelCreator", "Creates an NCA model with a given matrix.")] 34 [Storable Class]34 [StorableType("30D2840C-1FE3-4A45-97FF-294C93D33D8C")] 35 35 public class NcaModelCreator : SingleSuccessorOperator, INcaModelCreator { 36 36 … … 60 60 61 61 [StorableConstructor] 62 protected NcaModelCreator( bool deserializing) : base(deserializing) { }62 protected NcaModelCreator(StorableConstructorFlag _) : base(_) { } 63 63 protected NcaModelCreator(NcaModelCreator original, Cloner cloner) : base(original, cloner) { } 64 64 public NcaModelCreator() {
Note: See TracChangeset
for help on using the changeset viewer.