Map<DFSAState,DFSAState> stateLinks = new HashMap<DFSAState,DFSAState>();
// Convert binary lattice into word lattice:
tagLatticeToAnswerLattice
(tagLattice.initialState(), aInitState, new StringBuilder(""), nodeId, 0, 0.0, stateLinks, answerLattice, docArray);
try {
answerLattice.printAttFsmFormat(out);
} catch(IOException e) {
throw new RuntimeException(e);
}
}