- Timestamp:
- 10/08/12 16:11:03 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.TimeSeries/HeuristicLab.Problems.DataAnalysis/3.4/Implementation/TimeSeriesPrognosis/TimeSeriesPrognosisResults.cs
r8750 r8762 322 322 #endregion 323 323 324 324 [Storable] 325 325 private int trainingHorizon; 326 [Storable]327 326 public int TrainingHorizon { 328 327 get { return trainingHorizon; } … … 335 334 } 336 335 336 [Storable] 337 337 private int testHorizon; 338 [Storable]339 338 public int TestHorizon { 340 339 get { return testHorizon; } … … 351 350 public ITimeSeriesPrognosisSolution Solution { 352 351 get { return solution; } 352 private set { solution = value; } //necessary for persistence 353 353 } 354 354
Note: See TracChangeset
for help on using the changeset viewer.