Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/15/08 12:26:48 (16 years ago)
Author:
mkommend
Message:

namespaces changed to HeuristicLab.GP.StructureIdentification.Classification
(ticket #177)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification.Classification/CrossValidation.cs

    r656 r668  
    2828using HeuristicLab.DataAnalysis;
    2929
    30 namespace HeuristicLab.GP.Classification {
     30namespace HeuristicLab.GP.StructureIdentification.Classification {
    3131  public class CrossValidation : OperatorBase {
    3232
     
    8888        rotatedSet.Columns = origDataset.Columns;
    8989        rotatedSet.Samples = samples;
    90         childScope.AddVariable(new Variable(scope.TranslateName(DATASET), rotatedSet));
    91         childScope.AddVariable(new Variable(scope.TranslateName(TRAININGSAMPLESSTART), new IntData(newTrainingSamplesStart)));
    92         childScope.AddVariable(new Variable(scope.TranslateName(TRAININGSAMPLESEND), new IntData(newTrainingSamplesEnd)));
    93         childScope.AddVariable(new Variable(scope.TranslateName(VALIDATIONSAMPLESSTART), new IntData(newValidationSamplesStart)));
    94         childScope.AddVariable(new Variable(scope.TranslateName(VALIDATIONSAMPLESEND), new IntData(newValidationSamplesEnd)));
    95         childScope.AddVariable(new Variable(scope.TranslateName(TESTSAMPLESSTART), new IntData(newTestSamplesStart)));
    96         childScope.AddVariable(new Variable(scope.TranslateName(TESTSAMPLESEND), new IntData(newTestSamplesEnd)));
     90        childScope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(DATASET), rotatedSet));
     91        childScope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(TRAININGSAMPLESSTART), new IntData(newTrainingSamplesStart)));
     92        childScope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(TRAININGSAMPLESEND), new IntData(newTrainingSamplesEnd)));
     93        childScope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(VALIDATIONSAMPLESSTART), new IntData(newValidationSamplesStart)));
     94        childScope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(VALIDATIONSAMPLESEND), new IntData(newValidationSamplesEnd)));
     95        childScope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(TESTSAMPLESSTART), new IntData(newTestSamplesStart)));
     96        childScope.AddVariable(new HeuristicLab.Core.Variable(scope.TranslateName(TESTSAMPLESEND), new IntData(newTestSamplesEnd)));
    9797
    9898        scope.AddSubScope(childScope);
Note: See TracChangeset for help on using the changeset viewer.