double seqWeight;
public void setUp ()
{
System.out.println ("Setup");
transducer = new FeatureTransducer ();
FeatureTransducer t = transducer;
t.addState ("0", 0, Transducer.IMPOSSIBLE_WEIGHT,
new String[] {"a", "b"},
new String[] {"x", "y"},
new double[] {44, 66},
new String[] {"0", "1"});
t.addState ("1", Transducer.IMPOSSIBLE_WEIGHT, Transducer.IMPOSSIBLE_WEIGHT,
new String[] {"c", "d", "d"},
new String[] {"x", "y", "z"},
new double[] {44, 11, 66},
new String[] {"1", "1", "2"});
t.addState ("2", Transducer.IMPOSSIBLE_WEIGHT, 8,
new String[] {"e"},
new String[] {"z"},
new double[] {11},
new String[] {"2"});