Interface IAction<TBeliefSet>
Represents an action that can be executed on a belief set.
public interface IAction<in TBeliefSet> where TBeliefSet : IBeliefSet
Type Parameters
TBeliefSet
The type of the belief set that the action uses.
- Extension Methods
Methods
Execute(TBeliefSet)
Executes the action on the specified belief set.
void Execute(TBeliefSet beliefSet)
Parameters
beliefSet
TBeliefSetThe belief set on which the action is executed.