AccessEvaluator.Evaluate Method (TimeInterval, ITrackCalculationProgress) |
Evaluates over a single considered time interval. This evaluation also reports evaluation progress.
Namespace:
AGI.Foundation.Access
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntaxpublic AccessQueryResult Evaluate(
TimeInterval consideredInterval,
ITrackCalculationProgress tracker
)
Public Function Evaluate (
consideredInterval As TimeInterval,
tracker As ITrackCalculationProgress
) As AccessQueryResult
public:
virtual AccessQueryResult^ Evaluate(
TimeInterval^ consideredInterval,
ITrackCalculationProgress^ tracker
) sealed
abstract Evaluate :
consideredInterval : TimeInterval *
tracker : ITrackCalculationProgress -> AccessQueryResult
override Evaluate :
consideredInterval : TimeInterval *
tracker : ITrackCalculationProgress -> AccessQueryResult
Parameters
- consideredInterval
- Type: AGI.Foundation.Time.TimeInterval
The interval over which the evaluator is to analyze. - tracker
- Type: AGI.Foundation.ITrackCalculationProgress
The tracker used for reporting progress of this evaluation.
Return Value
Type:
AccessQueryResultThe value of the function over the interval.
Implements
IEvaluatorOverIntervals<TResult, TResultOverIntervals>.Evaluate(TimeInterval, ITrackCalculationProgress)
Remarks
For information about the specific function evaluated by this evaluator, see the documentation for the
method that was used to create this evaluator.
Once created, an evaluator will ignore changes made to the object(s) from which it was created. You should create a new evaluator
after making changes to definitional objects in order for those changes to be reflected in the results.
See Also