1 // Driver for syllable discovery using Dynamic Computational Networks
2 // Copyright © 2009 The University of Chicago
6 // See http://linguistica.uchicago.edu/dcnsyl.htm for history and
8 // Also see the learningsyl class in DCNlearningsyl.h, which does most
12 #include <q3valuevector.h>
14 #include <q3textstream.h>
16 #include "DCNdcnword.h"
17 #include "DCNnetworksyl.h"
18 #include "DCNgrammarsyl.h"
26 void readInput(QFile
&file
);
27 void printCorpus(QLabel
*label
, grammarsyl
*gram
);
28 QString
printCorpus(grammarsyl
*gram
);
30 uint
numberOfWords() const { return m_numOfWords
; }
31 dcnword
wordAt(uint index
) const;
35 Q3ValueVector
<dcnword
> m_wordVector
;