
de.uni.freiburg.iig.telematik.jagal.ts.TransitionRelation 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;
import de.uni.freiburg.iig.telematik.jagal.ts.abstr.AbstractTransitionRelation;
public class TransitionRelation extends AbstractTransitionRelation {
private static final long serialVersionUID = 2463763607811901236L;
public TransitionRelation(){
super();
}
public TransitionRelation(State source, State target){
super(source, target);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy