Table of Contents

Class StateGraphEdge

Namespace
Microsoft.Accordant
Assembly
Accordant.dll

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

object

StepFunction

The step function that takes the system to the target state graph node.

public IStepFunction StepFunction { get; set; }

Property Value

IStepFunction

Target

The target state graph node.

public StateGraphNode Target { get; set; }

Property Value

StateGraphNode