diff options
author | Chris Dyer <redpony@gmail.com> | 2014-11-30 21:30:09 -0500 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2014-11-30 21:30:09 -0500 |
commit | 448b451aa481b1509566ddb11abc3476466def6a (patch) | |
tree | 63df7a34d79f4bab813cf3651d31849c508083fc /decoder/Makefile.am | |
parent | 414e902ea252a77cd7d4f48132d3bd194e507cfd (diff) |
implementation of Rico Sennrich's CKY+ variant; it currently doesn't support span limits so it is not enabled, but it seems to be functional.
Diffstat (limited to 'decoder/Makefile.am')
-rw-r--r-- | decoder/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/decoder/Makefile.am b/decoder/Makefile.am index fcb95e65..78ab4d63 100644 --- a/decoder/Makefile.am +++ b/decoder/Makefile.am @@ -36,6 +36,7 @@ libcdec_a_SOURCES = \ aligner.h \ apply_models.h \ bottom_up_parser.h \ + bottom_up_parser-rs.h \ csplit.h \ decoder.h \ earley_composer.h \ @@ -99,6 +100,7 @@ libcdec_a_SOURCES = \ aligner.cc \ apply_models.cc \ bottom_up_parser.cc \ + bottom_up_parser-rs.cc \ cdec.cc \ cdec_ff.cc \ csplit.cc \ |