Graph::Writer::HTK - write a perl Graph out as an HTK lattice file
Contents
Copyright
Copyright (c) 2000-2012, Neil Bowers. All rights reserved. Copyright (c) 2000, Canon Research Centre
Europe. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl
itself.
perl v5.32.1 2021-09-19 Graph::Writer::HTK(3pm)
Description
This module will write a directed graph to a file in the HTK <http://htk.eng.cam.ac.uk> lattice format.
The graph must be an instance of the Graph class.
Name
Graph::Writer::HTK - write a perl Graph out as an HTK lattice file
Repository
<https://github.com/neilb/Graph-ReadWrite>
See Also
Graph
Jarkko Hietaniemi's Graph class and others, used for representing and manipulating directed graphs.
Available from CPAN. Also described / used in the chapter on directed graph algorithms in the
AlgorithmsinPerl book from O'Reilly.
Graph::Writer
The base-class for this module, which defines the public methods, and describes the ideas behind
Graph reader and writer modules.
Graph::Reader::HTK
A class which will read a perl Graph from an HTK lattice file.
Synopsis
use Graph::Writer::HTK;
$writer = Graph::Reader::HTK->new();
$reader->write_graph($graph, 'mylattice.lat');
