rinde.sim.core.graph.Graph Maven / Gradle / Ivy
/**
*
*/
package rinde.sim.core.graph;
import java.util.Collection;
import java.util.List;
import java.util.Set;
import javax.annotation.Nullable;
import org.apache.commons.math3.random.RandomGenerator;
/**
* Common interface for graphs (V,E). Vertices are called nodes
* which are represented as {@link Point}s and edges are represented by
* {@link Connection}s. Graphs are directed.
*
* TODO should be split up in an ImmutableGraph and Graph. Graphs should be
* created using the builder pattern?
*
* @author Rinde van Lon
* @author Bartosz Michalik - added edge data
* handling
* @param The type of {@link ConnectionData} that is used in the edges.
* @since 1.0
*/
public interface Graph {
/**
* Checks whether the specified node is a vertex in this graph.
* @param node The node to check.
* @return true
if the node is a vertex in this graph,
* false
otherwise.
*/
boolean containsNode(Point node);
/**
* @param node The node to check for outgoing connections.
* @return The outgoing connections starting from the specified node.
*/
Collection getOutgoingConnections(Point node);
/**
* @param node The node to check for incoming connections.
* @return The incoming connections starting from the specified node.
*/
Collection getIncomingConnections(Point node);
/**
* Checks if there exist a directed connection between from
and
* to
.
* @param from The starting node.
* @param to The end node.
* @return true
if the connection exist, false
* otherwise.
*/
boolean hasConnection(Point from, Point to);
/**
* Returns a {@link Connection} between from
and to
.
* @param from The starting node.
* @param to The end node.
* @return the {@link Connection}.
* @throws IllegalArgumentException if connection does not exist.
*/
Connection getConnection(Point from, Point to);
/**
* Get the data associated with connection.
* @param from Start of connection
* @param to End of connection
* @return connection data or null
if there is no data or
* connection does not exists.
*/
@Nullable
E connectionData(Point from, Point to);
/**
* Computes the length of the connection between from
and
* to
.
* @param from Start of connection.
* @param to End of connection.
* @return The length of the connection.
* @throws IllegalArgumentException if connection does not exist.
*/
double connectionLength(Point from, Point to);
/**
* @return The total number of connections in this graph.
*/
int getNumberOfConnections();
/**
* @return All connections in this graph.
*/
List> getConnections();
/**
* @return The total number of nodes in this graph.
*/
int getNumberOfNodes();
/**
* @return All nodes in this graph.
*/
Set getNodes();
/**
* Add connection to the graph.
* @param from starting node
* @param to end node
* @param edgeData data associated with the edge
* @throws IllegalArgumentException if the connection already exists.
*/
void addConnection(Point from, Point to, @Nullable E edgeData);
/**
* Add a connection to the graph.
* @param from Starting node
* @param to End node
* @throws IllegalArgumentException if the connection already exists.
*/
void addConnection(Point from, Point to);
/**
* Add connection to the graph.
* @param connection the connection to add.
* @throws IllegalArgumentException if the connection already exists.
*/
void addConnection(Connection connection);
/**
* Set connection data. Precondition: connection from -> to exists.
* @param from Start point of connection
* @param to End point of connection
* @param edgeData The edge data used for the connection
* @return old edge data or null
if there was no edge
* @throws IllegalArgumentException when the connection between nodes do not
* exists
*/
@Nullable
E setConnectionData(Point from, Point to, @Nullable E edgeData);
/**
* Adds connections to the graph.
* @param connections The connections to add.
* @throws IllegalArgumentException if any of the connections already exists.
*/
void addConnections(Collection> connections);
/**
* Merges other
into this graph.
* @param other The graph to merge into this graph.
*/
void merge(Graph other);
/**
* @return true
if this graph contains no nodes and connections,
* false
otherwise.
*/
boolean isEmpty();
/**
* Removes the specified node from the graph, all connected connections
* (incoming and outgoing) are removed as well.
* @param node The node to remove.
*/
void removeNode(Point node);
/**
* Removes connection between from
and to
.
* @param from Start node of connection.
* @param to End node of connection.
* @throws IllegalArgumentException if connection does not exist.
*/
void removeConnection(Point from, Point to);
/**
* Get a random node in graph.
* @param generator used to generate the random point.
* @return random {@link Point}
*/
Point getRandomNode(RandomGenerator generator);
}