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