From e26434979adc33bd949566ba7bf02dff64e80a3e Mon Sep 17 00:00:00 2001 From: Chris Dyer Date: Tue, 2 Oct 2012 00:19:43 -0400 Subject: cdec cleanup, remove bayesian stuff, parsing stuff --- rst_parser/arc_ff.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 rst_parser/arc_ff.h (limited to 'rst_parser/arc_ff.h') diff --git a/rst_parser/arc_ff.h b/rst_parser/arc_ff.h deleted file mode 100644 index 52f311d2..00000000 --- a/rst_parser/arc_ff.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef _ARC_FF_H_ -#define _ARC_FF_H_ - -#include -#include "sparse_vector.h" -#include "weights.h" -#include "arc_factored.h" - -struct TaggedSentence; -struct ArcFFImpl; -class ArcFeatureFunctions { - public: - ArcFeatureFunctions(); - ~ArcFeatureFunctions(); - - // called once, per input, before any calls to EdgeFeatures - // used to initialize sentence-specific data structures - void PrepareForInput(const TaggedSentence& sentence); - - void EdgeFeatures(const TaggedSentence& sentence, - short h, - short m, - SparseVector* features) const; - private: - ArcFFImpl* pimpl; -}; - -#endif -- cgit v1.2.3