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

de.uni.freiburg.iig.telematik.jagal.visualization.flexible.AbstractWeightedGraphComponent 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.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