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

de.uni.freiburg.iig.telematik.jagal.traverse.Traversable Maven / Gradle / Ivy

Go to download

JAGAL provides implementations for directed graphs (weighted and unweighted) and various types of transition systems as well as utils for graph traversal and modification.

The newest version!
package de.uni.freiburg.iig.telematik.jagal.traverse;


import java.util.Collection;

import de.invation.code.toval.validate.ParameterException;
import de.uni.freiburg.iig.telematik.jagal.graph.exception.VertexNotFoundException;


public interface Traversable {
	
	public Collection getParents(G node) throws VertexNotFoundException, ParameterException;
	
	public Collection getChildren(G node) throws VertexNotFoundException, ParameterException;

	public int nodeCount();
	
	public Collection getNodes();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy