- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 4 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/NcaGradientCalculator.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. … … 30 30 using HeuristicLab.Optimization; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Attic; 33 33 using HeuristicLab.Problems.DataAnalysis; 34 34 35 35 namespace HeuristicLab.Algorithms.DataAnalysis { 36 36 [Item("NcaGradientCalculator", "Calculates the quality and gradient of a certain NCA matrix.")] 37 [Storable Class]37 [StorableType("51A6EEB2-321D-460A-AF45-414144E06C85")] 38 38 public class NcaGradientCalculator : SingleSuccessorOperator, ISingleObjectiveOperator { 39 39 … … 69 69 70 70 [StorableConstructor] 71 protected NcaGradientCalculator( bool deserializing) : base(deserializing) { }71 protected NcaGradientCalculator(StorableConstructorFlag _) : base(_) { } 72 72 protected NcaGradientCalculator(NcaGradientCalculator original, Cloner cloner) : base(original, cloner) { } 73 73 public NcaGradientCalculator()
Note: See TracChangeset
for help on using the changeset viewer.