- Timestamp:
- 04/04/11 15:38:16 (11 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.DataAnalysis/3.4/Interfaces/IOnlineCalculator.cs
r5941 r5942 24 24 namespace HeuristicLab.Problems.DataAnalysis { 25 25 [Flags] 26 public enum Online EvaluatorError {26 public enum OnlineCalculatorError { 27 27 /// <summary> 28 28 /// No error occurred … … 38 38 InsufficientElementsAdded = 2 39 39 } 40 public interface IOnline Evaluator {41 Online EvaluatorError ErrorState { get; }40 public interface IOnlineCalculator { 41 OnlineCalculatorError ErrorState { get; } 42 42 double Value { get; } 43 43 void Reset();
Note: See TracChangeset
for help on using the changeset viewer.