diff options
author | Patrick Simianer <p@simianer.de> | 2014-01-13 12:37:45 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-01-13 12:37:45 +0100 |
commit | a2f803d5b629f31cf41313d77e382150dd007d39 (patch) | |
tree | c56130c1112e803058b33b98853cff08a8f8450d /decoder/scfg_translator.cc | |
parent | 926fb52bfc85dcd58156916ca2536ee32c719954 (diff) | |
parent | c148f8429c66103a401ba4c3a029e349cd11aa8a (diff) |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'decoder/scfg_translator.cc')
-rw-r--r-- | decoder/scfg_translator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/decoder/scfg_translator.cc b/decoder/scfg_translator.cc index a506c591..236d7c90 100644 --- a/decoder/scfg_translator.cc +++ b/decoder/scfg_translator.cc @@ -78,7 +78,7 @@ PassThroughGrammar::PassThroughGrammar(const Lattice& input, const string& cat, } bool PassThroughGrammar::HasRuleForSpan(int, int, int distance) const { - return (distance < 2); + return (distance < 4); // TODO this isn't great, but helps with EPS lattices } struct SCFGTranslatorImpl { |