Table of Contents

Class ReteGraph

Namespace
NRules.Diagnostics
Assembly
NRules.dll

Rete network graph that corresponds to the compiled rules.

public class ReteGraph
Inheritance
ReteGraph
Inherited Members

Constructors

Creates an instance of a Rete network graph as a collection of nodes and links between them.

public ReteGraph(IEnumerable<ReteNode> nodes, IEnumerable<ReteLink> links)

Parameters

nodes IEnumerable<ReteNode>

Rete network graph nodes.

links IEnumerable<ReteLink>

Links between Rete network nodes.

Properties

Links between nodes of the Rete network graph.

public ReteLink[] Links { get; }

Property Value

ReteLink[]

Nodes

Nodes of the Rete network graph.

public ReteNode[] Nodes { get; }

Property Value

ReteNode[]