![]() |
Grail (C#)
1.4.0
A multi-platform, modular, universal engine for embedding advanced AI in games.
|
Upper-bounds output of provided Evaluator. More...


Public Member Functions | |
| UpperBound (Evaluator< ContextType > childEvaluator, float upperBound) | |
| Constructor. More... | |
| sealed override float | Sample (float argument) |
| Transforms argument into output value depending on the type of Curve. More... | |
Public Member Functions inherited from Grail.Evaluators.Curves.Curve< ContextType > | |
| Curve (Evaluator< ContextType > childEvaluator) | |
| Constructor. More... | |
| override void | GetDependentConsiderations (List< Consideration< ContextType >> considerations) |
Public Member Functions inherited from Grail.Evaluators.Evaluator< ContextType > | |
| float | EvaluateContext (ContextType context, in UtilityEvaluatorSnapshot snapshot) |
| Evaluates provided context and if provided snapshot is not empty, fills it with debug data describing this node. More... | |
Public Attributes | |
| sealed override EvaluatorType | EvaluatorType => EvaluatorType.CURVE_UPPER_BOUND |
Additional Inherited Members | |
Static Public Member Functions inherited from Grail.Evaluators.Evaluator< ContextType > | |
| static void | CacheConsiderationEvaluations (Evaluator< ContextType > evaluator, ContextType context) |
Protected Member Functions inherited from Grail.Evaluators.Curves.Curve< ContextType > | |
| sealed override float | Evaluate (ContextType context, in UtilityEvaluatorSnapshot snapshot) |
| Called from EvaluateContext which also evaluates context, but without automatically filling snapshot with debug data. Should be overriden for each derived Evaluator. More... | |
| sealed override void | DebugDump (IReadOnlyDictionary< object, int > nodeMapping, ref EvaluationDebugData debugData) |
| Called from EvaluateContext, which generates additional debug data for each evaluator. Should be overriden in each derived evaluator to better reflect debug tree topology. More... | |
Properties inherited from Grail.Evaluators.Evaluator< ContextType > | |
| abstract EvaluatorType | EvaluatorType [get] |
Upper-bounds output of provided Evaluator.
| ContextType | Type of evaluated object. By default - ValueTuple(AIEntity, Blackboard). |
|
inline |
Constructor.
| childEvaluator | Evaluator which output will be transformed by this curve. |
| upperBound | Value bounding the function from above. |
|
inlinevirtual |
Transforms argument into output value depending on the type of Curve.
| argument | Value of a curve argument belonging to its domain. |
Implements Grail.Evaluators.Curves.Curve< ContextType >.