summaryrefslogtreecommitdiff
path: root/decoder/grammar.cc
diff options
context:
space:
mode:
authorChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2013-12-16 23:49:58 -0500
committerChris Dyer <cdyer@allegro.clab.cs.cmu.edu>2013-12-16 23:49:58 -0500
commitac224d3f0c63760ad33fa04719d26d3a3e42495c (patch)
tree5ae56314f10afe067711c42360ba26a9110e0a9a /decoder/grammar.cc
parentf39c95a0d0aff298d957aee018f4d6fbe87562a3 (diff)
better parsing errors, thx to nschneid, also increase limits on number of features
Diffstat (limited to 'decoder/grammar.cc')
-rw-r--r--decoder/grammar.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoder/grammar.cc b/decoder/grammar.cc
index 160d00e6..439e448d 100644
--- a/decoder/grammar.cc
+++ b/decoder/grammar.cc
@@ -121,11 +121,11 @@ static void AddRuleHelper(const TRulePtr& new_rule, const unsigned int ctf_level
void TextGrammar::ReadFromFile(const string& filename) {
ReadFile in(filename);
- ReadFromStream(in.stream());
+ RuleLexer::ReadRules(in.stream(), &AddRuleHelper, filename, this);
}
void TextGrammar::ReadFromStream(istream* in) {
- RuleLexer::ReadRules(in, &AddRuleHelper, this);
+ RuleLexer::ReadRules(in, &AddRuleHelper, "UNKNOWN", this);
}
bool TextGrammar::HasRuleForSpan(int /* i */, int /* j */, int distance) const {