Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/09 10:09:59 (15 years ago)
Author:
gkronber
Message:

Moved problem injectors from GP.StructureIdentification projects into HeuristicLab.Modeling and made some necessary adjustments (project name, references, plugin dependencies). #635

Location:
trunk/sources/HeuristicLab.Modeling/3.2
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling/3.2

    • Property svn:ignore
      •  

        old new  
        11bin
        22obj
         3*.user
  • trunk/sources/HeuristicLab.Modeling/3.2/TimeSeriesProblemInjector.cs

    r1854 r1856  
    2424using System.Text;
    2525using System.Xml;
    26 using Core = HeuristicLab.Core;
     26using HeuristicLab.Core;
    2727using HeuristicLab.Data;
    28 using HeuristicLab.Operators;
    2928using HeuristicLab.DataAnalysis;
    3029
    31 namespace HeuristicLab.GP.StructureIdentification.TimeSeries {
    32   public class ProblemInjector : HeuristicLab.GP.StructureIdentification.ProblemInjector {
     30namespace HeuristicLab.Modeling {
     31  public class TimeSeriesProblemInjector : ProblemInjector {
    3332
    3433    public override string Description {
    3534      get {
    36         return "Problem injector for time series structure identification.";
     35        return "Problem injector for time series problems.";
    3736      }
    3837    }
    3938
    40     public ProblemInjector()
     39    public TimeSeriesProblemInjector()
    4140      : base() {
    4241      AddVariableInfo(new Core.VariableInfo("Autoregressive", "Autoregressive modelling includes previous values of the target variable to predict future values.", typeof(BoolData), Core.VariableKind.New));
Note: See TracChangeset for help on using the changeset viewer.