Uses of Interface
com.jgalgo.graph.IWeights
-
Packages that use IWeights Package Description com.jgalgo.graph Graphs object are the fundamental building blocks of the JGAlgo library. -
-
Uses of IWeights in com.jgalgo.graph
Subinterfaces of IWeights in com.jgalgo.graph Modifier and Type Interface Description interface
IWeightsBool
Specific weights ofboolean
for int graphs.interface
IWeightsByte
Specific weights ofbyte
for int graphs.interface
IWeightsChar
Specific weights ofchar
for int graphs.interface
IWeightsDouble
Specific weights ofdouble
for int graphs.interface
IWeightsFloat
Specific weights offloat
for int graphs.interface
IWeightsInt
Specific weights ofint
for int graphs.interface
IWeightsLong
Specific weights oflong
for int graphs.interface
IWeightsObj<T>
Specific weights ofObject
for int graphs.interface
IWeightsShort
Specific weights ofshort
for int graphs.Methods in com.jgalgo.graph with type parameters of type IWeights Modifier and Type Method Description static <T,WeightsT extends IWeights<T>>
WeightsTIWeights. createExternalEdgesWeights(IntGraph g, Class<? super T> type)
Create an external edge weights container.static <T,WeightsT extends IWeights<T>>
WeightsTIWeights. createExternalEdgesWeights(IntGraph g, Class<? super T> type, T defVal)
Create an external edge weights container with default values.static <T,WeightsT extends IWeights<T>>
WeightsTIWeights. createExternalVerticesWeights(IntGraph g, Class<? super T> type)
Create an external vertex weights container.static <T,WeightsT extends IWeights<T>>
WeightsTIWeights. createExternalVerticesWeights(IntGraph g, Class<? super T> type, T defVal)
Create an external vertex weights container with default values.static <K,T,WeightsT extends IWeights<T>>
WeightsTIndexIdMaps. idToIndexWeights(Weights<K,T> weights, IndexIdMap<K> map)
Create a weights view that is accessed by the elements indices, given a weights container that is accessed by the element IDs.
-