Class PredicatedParallelEdgeIndexFunction<V,​E>

  • All Implemented Interfaces:
    BiFunction<org.jgrapht.Graph<V,​E>,​E,​Integer>, EdgeIndexFunction<V,​E>

    public class PredicatedParallelEdgeIndexFunction<V,​E>
    extends ParallelEdgeIndexFunction<V,​E>
    A class which creates and maintains indices for parallel edges. Edges are evaluated by a Predicate function and those that evaluate to true are excluded from computing a parallel offset.
    Author:
    Tom Nelson
    • Constructor Detail

      • PredicatedParallelEdgeIndexFunction

        public PredicatedParallelEdgeIndexFunction​(Predicate<E> predicate)
    • Method Detail

      • apply

        public Integer apply​(org.jgrapht.Graph<V,​E> graph,
                             E edge)
        Returns the index for the specified edge, or 0 if edge is accepted by the Predicate.
        Specified by:
        apply in interface BiFunction<org.jgrapht.Graph<V,​E>,​E,​Integer>
        Specified by:
        apply in interface EdgeIndexFunction<V,​E>
        Overrides:
        apply in class ParallelEdgeIndexFunction<V,​E>
        Parameters:
        graph - the graph and the edge whose index is to be calculated
        edge - the edge
        Returns:
        edge's index in this instance's Graph.
      • getPredicate

        public Predicate<E> getPredicate()
      • setPredicate

        public void setPredicate​(Predicate<E> predicate)