StoppingConditionGetEvaluator Method  | 
  
    Namespace: 
   AGI.Foundation.StoppingConditions
    Assembly:
   AGI.Foundation.Models (in AGI.Foundation.Models.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic abstract StoppingConditionEvaluator GetEvaluator(
	EvaluatorGroup group
)
Public MustOverride Function GetEvaluator ( 
	group As EvaluatorGroup
) As StoppingConditionEvaluator
public:
virtual StoppingConditionEvaluator^ GetEvaluator(
	EvaluatorGroup^ group
) abstract
abstract GetEvaluator : 
        group : EvaluatorGroup -> StoppingConditionEvaluator 
Parameters
- group
 - Type: AGI.FoundationEvaluatorGroup
            The group to use to initialize any 
            evaluators that will be used by the condition and its Constraints.
             
Return Value
Type: 
StoppingConditionEvaluatorAn 
evaluator for this 
StoppingCondition.
Remarks
            Derived classes should call 
ValidateProperties to check properties 
            owned by this base class, as well as validate their own properties.
            
See Also