Ocronet.Dynamic.OcroFST.FstIO.fst_read C# (CSharp) Method

fst_read() public static method

public static fst_read ( IGenericFst fst, BinaryReader reader ) : void
fst Ocronet.Dynamic.Interfaces.IGenericFst
reader System.IO.BinaryReader
return void
        public static void fst_read(IGenericFst fst, BinaryReader reader)
        {
            read_header_and_symbols(fst, reader);
            for (int i = 0; i < fst.nStates(); i++)
                read_node(reader, fst, i);
        }

Usage Example

コード例 #1
0
 public override void Load(BinaryReader reader)
 {
     FstIO.fst_read(this, reader);
 }