Edge predicate

Namespace:  QuickGraph.Predicates
Assembly:  QuickGraph (in QuickGraph.dll) Version: 2.4.2.1515 (2.4.2.1515)

Syntax

C#
public class EdgePredicate : IEdgePredicate
Visual Basic (Declaration)
Public Class EdgePredicate _
	Implements IEdgePredicate

Remarks

Applies predicates to an edge, to it's source and to it's target.

Given ep, the edge predicate, and vp, the vertex predicate, the predicate result is computed, for a given edge e, as:

CopyC#
ep(e) && vp(e.Source) && vp(e.Target)

Inheritance Hierarchy

System..::.Object
  QuickGraph.Predicates..::.EdgePredicate

See Also