Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/03/09 12:26:42 (15 years ago)
Author:
gkronber
Message:

Merged changes from GP-refactoring branch back into the trunk #713.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.GP.StructureIdentification/3.3/AlgorithmBase.cs

    r2161 r2222  
    2222using System;
    2323using System.Collections.Generic;
    24 using System.Linq;
    25 using System.Text;
     24using System.Xml;
    2625using HeuristicLab.Core;
    27 using System.Xml;
    28 using System.Diagnostics;
     26using HeuristicLab.Data;
    2927using HeuristicLab.DataAnalysis;
     28using HeuristicLab.Evolutionary;
     29using HeuristicLab.GP.Interfaces;
     30using HeuristicLab.Logging;
     31using HeuristicLab.Modeling;
    3032using HeuristicLab.Operators;
    3133using HeuristicLab.Random;
    3234using HeuristicLab.Selection;
    33 using HeuristicLab.Logging;
    34 using HeuristicLab.Data;
    35 using HeuristicLab.Operators.Programmable;
    36 using HeuristicLab.Evolutionary;
    37 using HeuristicLab.Modeling;
    3835
    3936namespace HeuristicLab.GP.StructureIdentification {
     
    419416      Model model = new Model();
    420417      Dataset ds = bestModelScope.GetVariableValue<Dataset>("Dataset", true);
    421       model.Data = bestModelScope.GetVariableValue<IFunctionTree>("FunctionTree", false);
     418      model.Data = bestModelScope.GetVariableValue<IGeneticProgrammingModel>("FunctionTree", false);
    422419      model.Dataset = ds;
    423420      model.TargetVariable = ds.GetVariableName(bestModelScope.GetVariableValue<IntData>("TargetVariable", true).Data);
Note: See TracChangeset for help on using the changeset viewer.