public override void dump(string msg)
        {
            [email protected](new StringBuilder().append("   CompositeSenone ").append(msg).append(": ").toString());
            Senone[] array = this.senones;
            int      num   = array.Length;

            for (int i = 0; i < num; i++)
            {
                Senone senone = array[i];
                senone.dump("   ");
            }
        }
Example #2
0
        public virtual void dump(string msg)
        {
            [email protected](new StringBuilder().append(" SenoneSequence ").append(msg).append(':').toString());
            Senone[] array = this.senones;
            int      num   = array.Length;

            for (int i = 0; i < num; i++)
            {
                Senone senone = array[i];
                senone.dump("  seq:");
            }
        }