diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2012-03-24 23:04:46 -0400 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2012-03-24 23:04:46 -0400 |
commit | b6eede632af4fa58a6f5325ee0d059c02a898b9f (patch) | |
tree | 4d29d1d1d700b9540af213bac32ffda96046abe1 /decoder/aligner.cc | |
parent | 0c7e078d14dd7078ec4a5b3e77007609aec5e54c (diff) |
rename aligner, add support for distinguishing translation / transliteration
Diffstat (limited to 'decoder/aligner.cc')
-rw-r--r-- | decoder/aligner.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/aligner.cc b/decoder/aligner.cc index 53e059fb..232e022a 100644 --- a/decoder/aligner.cc +++ b/decoder/aligner.cc @@ -11,7 +11,7 @@ #include "sentence_metadata.h" #include "inside_outside.h" #include "viterbi.h" -#include "alignment_pharaoh.h" +#include "alignment_io.h" using namespace std; @@ -300,7 +300,7 @@ void AlignerTools::WriteAlignment(const Lattice& src_lattice, cerr << grid << endl; } (*out) << TD::GetString(src_sent) << " ||| " << TD::GetString(trg_sent) << " ||| "; - AlignmentPharaoh::SerializePharaohFormat(grid, out); + AlignmentIO::SerializePharaohFormat(grid, out); } }; |