Changeset 2381 for trunk/sources/HeuristicLab.Modeling
- Timestamp:
- 09/23/09 13:58:07 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Modeling/3.2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Modeling/3.2/IPredictor.cs
r2328 r2381 31 31 double LowerPredictionLimit { get; set; } 32 32 double[] Predict(Dataset dataset, int start, int end); 33 IEnumerable<string> GetInputVariables(); 33 34 } 34 35 } -
trunk/sources/HeuristicLab.Modeling/3.2/PredictorBase.cs
r2328 r2381 32 32 public double LowerPredictionLimit { get; set; } 33 33 public abstract double[] Predict(Dataset dataset, int start, int end); 34 public abstract IEnumerable<string> GetInputVariables(); 34 35 35 36 public PredictorBase() : this(double.MinValue, double.MaxValue) { } // for persistence
Note: See TracChangeset
for help on using the changeset viewer.