All Downloads are FREE. Search and download functionalities are using the official Maven repository.

graph.edge.WeightedEdge Maven / Gradle / Ivy

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