Markov IEdge chain generator with the propability vector equally distributed over the out-edges.

Namespace:  QuickGraph.Algorithms.RandomWalks
Assembly:  QuickGraph.Algorithms (in QuickGraph.Algorithms.dll) Version: 2.4.2.1514 (2.4.2.1514)

Syntax

C#
public class NormalizedMarkovEdgeChain : IMarkovEdgeChain
Visual Basic (Declaration)
Public Class NormalizedMarkovEdgeChain _
	Implements IMarkovEdgeChain

Remarks

Field Value

This class can be used to generate a Markov Chain of IEdge instance. The probability vector is computed such that each out-edge has the same probability:
CopyC#
outEdgeCount = OutDegree(u)
Pr[e_i] = 1/outEdgeCount

Inheritance Hierarchy

System..::.Object
  QuickGraph.Algorithms.RandomWalks..::.NormalizedMarkovEdgeChain

See Also