- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Algorithms.DataAnalysis
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4
- Property svn:mergeinfo changed
-
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/ModelCreation/INcaModelCreator.cs
r15584 r17097 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. … … 20 20 #endregion 21 21 22 using System;23 using System.Collections.Generic;24 using System.Linq;25 using System.Text;26 22 using HeuristicLab.Core; 23 using HEAL.Attic; 27 24 28 25 namespace HeuristicLab.Algorithms.DataAnalysis { 26 [StorableType("d93ecea5-379a-4569-8e0d-a80725d38d7f")] 29 27 public interface INcaModelCreator : IOperator { 30 28 -
stable/HeuristicLab.Algorithms.DataAnalysis/3.4/Nca/ModelCreation/NcaModelCreator.cs
r15584 r17097 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.