In edge predicate
Namespace:
QuickGraph.PredicatesAssembly: 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)
