From 851e389dffdd6996ea32d70defb8906de80b9edc Mon Sep 17 00:00:00 2001 From: Chris Dyer Date: Mon, 14 Dec 2009 20:35:11 -0500 Subject: few small fixes of alignment tools, add new orthographic similarity feature for word aligner, final naming of directories, libraries in cdec --- src/apply_models.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/apply_models.h (limited to 'src/apply_models.h') diff --git a/src/apply_models.h b/src/apply_models.h deleted file mode 100644 index 08fce037..00000000 --- a/src/apply_models.h +++ /dev/null @@ -1,20 +0,0 @@ -#ifndef _APPLY_MODELS_H_ -#define _APPLY_MODELS_H_ - -struct ModelSet; -struct Hypergraph; -struct SentenceMetadata; - -struct PruningConfiguration { - const int algorithm; // 0 = full intersection, 1 = cube pruning - const int pop_limit; // max number of pops off the heap at each node - explicit PruningConfiguration(int k) : algorithm(1), pop_limit(k) {} -}; - -void ApplyModelSet(const Hypergraph& in, - const SentenceMetadata& smeta, - const ModelSet& models, - const PruningConfiguration& config, - Hypergraph* out); - -#endif -- cgit v1.2.3