summaryrefslogtreecommitdiff
path: root/decoder/grammar.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cab.ark.cs.cmu.edu>2012-10-25 23:29:39 -0400
committerChris Dyer <cdyer@cab.ark.cs.cmu.edu>2012-10-25 23:29:39 -0400
commit6bbf03ac46bd57400aa9e65a321a304a234af935 (patch)
treeb7c4ff48209115fd40ec4fdebee155f45a43e2ad /decoder/grammar.h
parent17abaf1a6c1523f4d53a11c5d940ab59dcbc63b4 (diff)
parent8f5efe046c0a14aaa3ea5925fafdf71c26309b68 (diff)
Merge branch 'master' of github.com:redpony/cdec
Diffstat (limited to 'decoder/grammar.h')
-rw-r--r--decoder/grammar.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/decoder/grammar.h b/decoder/grammar.h
index e6a15a69..add1a235 100644
--- a/decoder/grammar.h
+++ b/decoder/grammar.h
@@ -81,18 +81,4 @@ struct TextGrammar : public Grammar {
};
-struct GlueGrammar : public TextGrammar {
- // read glue grammar from file
- explicit GlueGrammar(const std::string& file);
- GlueGrammar(const std::string& goal_nt, const std::string& default_nt, const unsigned int ctf_level=0); // "S", "X"
- virtual bool HasRuleForSpan(int i, int j, int distance) const;
-};
-
-struct PassThroughGrammar : public TextGrammar {
- PassThroughGrammar(const Lattice& input, const std::string& cat, const unsigned int ctf_level=0);
- virtual bool HasRuleForSpan(int i, int j, int distance) const;
-};
-
-void RefineRule(TRulePtr pt, const unsigned int ctf_level);
-
#endif