Changeset 16842 for branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/ModelCreation
- Timestamp:
- 04/19/19 11:05:52 (6 years ago)
- Location:
- branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/ModelCreation/INcaModelCreator.cs
r16538 r16842 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. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 23 24 24 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("d93ecea5-379a-4569-8e0d-a80725d38d7f")] 25 27 public interface INcaModelCreator : IOperator { 26 28 -
branches/2847_M5Regression/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/ModelCreation/NcaModelCreator.cs
r16538 r16842 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.