#region License Information
/* HeuristicLab
* Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
*
* This file is part of HeuristicLab.
*
* HeuristicLab is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* HeuristicLab is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with HeuristicLab. If not, see .
*/
#endregion
using HeuristicLab.Common;
using HeuristicLab.Core;
using HeuristicLab.Data;
using HeuristicLab.Parameters;
using HEAL.Attic;
namespace HeuristicLab.Problems.DataAnalysis.Symbolic.TimeSeriesPrognosis {
[StorableType("938BBDA4-0A01-4144-932D-AF1DA30E9747")]
public abstract class SymbolicTimeSeriesPrognosisSingleObjectiveEvaluator : SymbolicDataAnalysisSingleObjectiveEvaluator, ISymbolicTimeSeriesPrognosisSingleObjectiveEvaluator {
private const string HorizonParameterName = "Horizon";
public IValueLookupParameter HorizonParameter {
get { return (IValueLookupParameter)Parameters[HorizonParameterName]; }
}
[StorableConstructor]
protected SymbolicTimeSeriesPrognosisSingleObjectiveEvaluator(StorableConstructorFlag _) : base(_) { }
protected SymbolicTimeSeriesPrognosisSingleObjectiveEvaluator(SymbolicTimeSeriesPrognosisSingleObjectiveEvaluator original, Cloner cloner)
: base(original, cloner) {
}
protected SymbolicTimeSeriesPrognosisSingleObjectiveEvaluator()
: base() {
Parameters.Add(new ValueLookupParameter(HorizonParameterName, "The time interval for which the prognosis should be calculated.", new IntValue(1)));
ApplyLinearScalingParameter.Hidden = true;
}
}
}