Changeset 8427 for branches/NCA/HeuristicLab.Algorithms.NCA/3.3/NCA.cs
- Timestamp:
- 08/07/12 16:49:51 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/NCA/HeuristicLab.Algorithms.NCA/3.3/NCA.cs
r8425 r8427 88 88 89 89 protected override void Run() { 90 var classification = NeighborhoodComponentsAnalysis.CreateNCASolution( Problem.ProblemData, K.Value, ReduceDimensions.Value, InitializationParameter.Value);90 var classification = NeighborhoodComponentsAnalysis.CreateNCASolution((IClassificationProblemData)Problem.ProblemData.Clone(), K.Value, ReduceDimensions.Value, InitializationParameter.Value); 91 91 Results.Add(new Result("ClassificationSolution", "The classification solution.", classification)); 92 92 }
Note: See TracChangeset
for help on using the changeset viewer.