In edge predicate

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

Syntax

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

Remarks

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

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)

Inheritance Hierarchy

System..::.Object
  QuickGraph.Predicates..::.InEdgePredicate

See Also