Uses of Interface
com.jgalgo.graph.IndexIntIdMap
-
Packages that use IndexIntIdMap Package Description com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of IndexIntIdMap in com.jgalgo.graph
Methods in com.jgalgo.graph that return IndexIntIdMap Modifier and Type Method Description static IndexIntIdMap
IndexIntIdMap. identityEdgesMap(IntSet edgeSet)
Create an identity mapping between the elements IDs and indices.static IndexIntIdMap
IndexIntIdMap. identityVerticesMap(IntSet vertexSet)
Create an identity mapping between the elements IDs and indices.IndexIntIdMap
IndexGraph. indexGraphEdgesMap()
Deprecated.this function will always return the identity mapping, no reason to call itIndexIntIdMap
IntGraph. indexGraphEdgesMap()
IndexIntIdMap
IndexGraph. indexGraphVerticesMap()
Deprecated.this function will always return the identity mapping, no reason to call itIndexIntIdMap
IntGraph. indexGraphVerticesMap()
Methods in com.jgalgo.graph with parameters of type IndexIntIdMap Modifier and Type Method Description static IntCollection
IndexIdMaps. indexToIdCollection(IntCollection indexCollection, IndexIntIdMap map)
Create an int IDs collection from a collection of indices.static IntIterator
IndexIdMaps. indexToIdIterator(IntIterator indexIter, IndexIntIdMap map)
Create an IDs iterator from an iterator of indices.static IntList
IndexIdMaps. indexToIdList(IntList indexList, IndexIntIdMap map)
Create an IDs list from a list of indices.static IntSet
IndexIdMaps. indexToIdSet(IntSet indexSet, IndexIntIdMap map)
Create an IDs set from a set of indices.
-