Uses of Interface
com.mastfrog.graph.IntGraph
-
Packages that use IntGraph Package Description com.mastfrog.graph com.mastfrog.graph.algorithm com.mastfrog.graph.dynamic -
-
Uses of IntGraph in com.mastfrog.graph
Methods in com.mastfrog.graph that return IntGraph Modifier and Type Method Description IntGraphIntGraphBuilder. build()static IntGraphIntGraph. create(Bits[] references)static IntGraphIntGraph. create(Bits[] reverseReferences, Bits[] references)static IntGraphIntGraph. create(BitSet[] references)static IntGraphIntGraph. create(BitSet[] reverseReferences, BitSet[] references)static IntGraphIntGraph. load(ObjectInputStream objectInputStream)IntGraphIntGraph. omitting(int... items)Create a new graph, sans the passed array of items - the resulting graph will be smaller and if mapped to objects, have different indices than the original.IntGraphPairSet. toGraph()Methods in com.mastfrog.graph with parameters of type IntGraph Modifier and Type Method Description static StringGraphStringGraph. create(IntGraph graph, String[] sortedArray)Create a graph from the passed bit set graph, and a pre-sorted array of unique strings where integer nodes in the passed graph correspond to offsets within the array.voidIntGraph. diff(IntGraph other, BiConsumer<IntGraph,IntGraph> c)Compare this graph and another; it is assumed that they have the same size.Method parameters in com.mastfrog.graph with type arguments of type IntGraph Modifier and Type Method Description voidIntGraph. diff(IntGraph other, BiConsumer<IntGraph,IntGraph> c)Compare this graph and another; it is assumed that they have the same size.voidIntGraph. diff(IntGraph other, BiConsumer<IntGraph,IntGraph> c)Compare this graph and another; it is assumed that they have the same size.voidObjectGraph. toIntGraph(BiConsumer<IndexedResolvable<? extends T>,IntGraph> consumer)Convert this graph to its (usually internal) IntGraph, needed for serialization. -
Uses of IntGraph in com.mastfrog.graph.algorithm
Methods in com.mastfrog.graph.algorithm with parameters of type IntGraph Modifier and Type Method Description abstract RAlgorithm. apply(IntGraph graph)double[]EigenvectorCentrality. apply(IntGraph graph)double[]PageRank. apply(IntGraph graph)<T> List<Score<T>>RankingAlgorithm. apply(IntGraph graph, IntFunction<T> toObject) -
Uses of IntGraph in com.mastfrog.graph.dynamic
Method parameters in com.mastfrog.graph.dynamic with type arguments of type IntGraph Modifier and Type Method Description voidDynamicGraph. toIntGraph(BiConsumer<IndexedResolvable<? extends T>,IntGraph> consumer)
-