![JAR search and dependency download from the Maven repository](/logo.png)
graph.edge.WeightedEdge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graph Show documentation
Show all versions of graph Show documentation
A library of collections for storing graphs and doing operations on it
The newest version!
package graph.edge;
import java.math.BigDecimal;
/**
* This interface represents weighted Edges
*/
public interface WeightedEdge extends Edge {
/**
* @return weight of this edge
*/
BigDecimal getWeight();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy