Class StateGraphEdge
The edge of the state graph. The edge includes the target state graph node and the step function whose application takes the system to the target state graph node.
public class StateGraphEdge
- Inheritance
-
StateGraphEdge
- Inherited Members
Properties
Metadata
Metadata associated with the edge.
public object Metadata { get; set; }
Property Value
StepFunction
The step function that takes the system to the target state graph node.
public IStepFunction StepFunction { get; set; }
Property Value
Target
The target state graph node.
public StateGraphNode Target { get; set; }