jaga.pj.circuits.experiment
Class FSMEdge

java.lang.Object
  |
  +--jaga.pj.circuits.experiment.FSMEdge
All Implemented Interfaces:
java.io.Serializable

public class FSMEdge
extends java.lang.Object
implements java.io.Serializable

Represents an edge in a transition graph of a finite state machine. Optimized for machines with two binary inputs.

See Also:
Serialized Form

Field Summary
 FSMNode dest
           
 boolean i0
           
 boolean i1
           
 
Constructor Summary
FSMEdge(boolean pi0, boolean pi1, FSMNode pdest)
          Creates new FSMEdge
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

i0

public boolean i0

i1

public boolean i1

dest

public FSMNode dest
Constructor Detail

FSMEdge

public FSMEdge(boolean pi0,
               boolean pi1,
               FSMNode pdest)
Creates new FSMEdge