Takes two machines, m1 and m2. Output of the composite machine is the
output to m1. Output of m1 is fed back through m2; that result is added
to the input and used as the 'error' signal, which is the input to
m1.
|
__init__(self,
m1,
m2,
name=None) |
|
|
|
|
|
|
|
done(self,
state)
By default, machines don't terminate |
|
|
|
printDebugInfo(self,
depth,
state,
nextState,
inp,
out,
debugParams)
Default method for printing out all of the debugging information for
a primitive machine. |
|
|
Inherited from SM :
check ,
doTraceTasks ,
getStartState ,
guaranteeName ,
isDone ,
run ,
start ,
step ,
transduce ,
transduceF
|