
de.uni.freiburg.iig.telematik.jagal.ts.abstr.AbstractTransitionRelation 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.ts.abstr;
import java.io.Serializable;
import de.uni.freiburg.iig.telematik.jagal.graph.Edge;
public abstract class AbstractTransitionRelation, O extends Object> extends Edge implements Serializable {
private static final long serialVersionUID = 8676428132800423438L;
public AbstractTransitionRelation(){
super();
}
public AbstractTransitionRelation(S source, S target){
super(source, target);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy