NAME

Text::Sentence::Alignment - Two Sentence Alignment

VERSION

Version 0.01

SYNOPSIS

This Module process two sentences (i.e. terms separated by space) alignment. Now it provide two kind of alignment method, Global and Local Alignment.

use Text::Sentence::Alignment;

use Text::Sentence::Alignment qw(do_alignment);

# local alignment
my $result = do_alignment($s1,$s2,1); 

# global alignment
my $result = do_alignment($s1,$s2); 

EXPORT

BUILD-IN VARIABLES

FUNCTIONS

give_sentences

cululate_matrix

similarity_print

get_align_result

AUTHOR

Cheng-Lung Sung, <clsung@cpan.org>

BUGS

Please report any bugs or feature requests to bug-text-sentence-alignment@rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Text-Sentence-Alignment. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2005 Cheng-Lung Sung, All Rights Reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.