
de.uni.freiburg.iig.telematik.jagal.visualization.flexible.AbstractWeightedGraphComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JAGAL Show documentation
Show all versions of JAGAL Show documentation
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.visualization.flexible;
import de.uni.freiburg.iig.telematik.jagal.graph.Vertex;
import de.uni.freiburg.iig.telematik.jagal.graph.weighted.AbstractWeightedGraph;
import de.uni.freiburg.iig.telematik.jagal.graph.weighted.WeightedEdge;
public abstract class AbstractWeightedGraphComponent, V extends Vertex, U> extends AbstractGraphComponent, U> {
private static final long serialVersionUID = -8107668682072069537L;
public AbstractWeightedGraphComponent(G graph) throws Exception {
super(graph);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy