Package net.automatalib.util.ts.comp
Class TSComposition<S1,S2,I,T1,T2,TS1 extends TransitionSystem<S1,I,T1>,TS2 extends TransitionSystem<S2,I,T2>>
- java.lang.Object
-
- net.automatalib.util.ts.comp.TSComposition<S1,S2,I,T1,T2,TS1,TS2>
-
- All Implemented Interfaces:
SimpleTS<Pair<S1,S2>,I>,TransitionSystem<Pair<S1,S2>,I,Pair<T1,T2>>
public class TSComposition<S1,S2,I,T1,T2,TS1 extends TransitionSystem<S1,I,T1>,TS2 extends TransitionSystem<S2,I,T2>> extends Object implements TransitionSystem<Pair<S1,S2>,I,Pair<T1,T2>>
-
-
Constructor Summary
Constructors Constructor Description TSComposition(TS1 ts1, TS2 ts2)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Set<Pair<S1,S2>>getInitialStates()Pair<S1,S2>getSuccessor(Pair<T1,T2> transition)Collection<Pair<T1,T2>>getTransitions(Pair<S1,S2> state, I input)-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface net.automatalib.ts.simple.SimpleTS
createDynamicStateMapping, createStaticStateMapping, getStates, getSuccessors, getSuccessors
-
Methods inherited from interface net.automatalib.ts.TransitionSystem
getSuccessors, powersetView
-
-
-
-
Field Detail
-
ts1
protected final TS1 extends TransitionSystem<S1,I,T1> ts1
-
ts2
protected final TS2 extends TransitionSystem<S2,I,T2> ts2
-
-