Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8970


Ignore:
Timestamp:
11/28/12 18:23:21 (11 years ago)
Author:
gkronber
Message:

#1917: formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Algorithms.DataAnalysis/3.4/CrossValidation.cs

    r8969 r8970  
    551551        throw new ArgumentException("A cross validation algorithm can only contain DataAnalysisProblems.");
    552552      }
    553       if(problem!= null) problem.Reset -= new EventHandler(Problem_Reset);
     553      if (problem != null) problem.Reset -= new EventHandler(Problem_Reset);
    554554      if (Problem != null) Problem.Reset += new EventHandler(Problem_Reset);
    555555      problem = (IDataAnalysisProblem)algorithm.Problem;
     
    567567    }
    568568
    569     private void ConfigureProblem(){
    570     SamplesStart.Value = 0;
     569    private void ConfigureProblem() {
     570      SamplesStart.Value = 0;
    571571      if (Problem != null) {
    572572        SamplesEnd.Value = Problem.ProblemData.Dataset.Rows;
Note: See TracChangeset for help on using the changeset viewer.