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

gr.james.simplegraph.WeightedDirectedEdgeImpl Maven / Gradle / Ivy

Go to download

Simple Graph is a graph interface for Java 6 that is designed to expose a very simple API to support working with graphs

The newest version!
package gr.james.simplegraph;

import java.util.Arrays;

final class WeightedDirectedEdgeImpl implements WeightedDirectedEdge {
    private final int source;
    private final int target;
    private final double weight;

    WeightedDirectedEdgeImpl(int source, int target, double weight) {
        this.source = source;
        this.target = target;
        this.weight = weight;
    }

    @Override
    public int source() {
        return source;
    }

    @Override
    public int target() {
        return target;
    }

    @Override
    public double weight() {
        return weight;
    }

    @Override
    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || !(obj instanceof WeightedDirectedEdge)) {
            return false;
        }
        final WeightedDirectedEdge that = (WeightedDirectedEdge) obj;
        return source() == that.source() &&
                target() == that.target() &&
                weight() == that.weight();
    }

    @Override
    public int hashCode() {
        return Arrays.hashCode(new Object[]{source(), target(), weight()});
    }

    @Override
    public String toString() {
        return String.format("%d -> %d [%.2f]", source(), target(), weight());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy