- Timestamp:
- 04/20/10 15:49:22 (15 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.3/Interfaces/IModel.cs
r3409 r3442 31 31 32 32 namespace HeuristicLab.Problems.DataAnalysis { 33 public interface I Predictor: IDeepCloneable {34 double Estimate(double[] xs);33 public interface IModel : IDeepCloneable { 34 double GetValue(double[] xs); 35 35 } 36 36 }
Note: See TracChangeset
for help on using the changeset viewer.