From 541915be79d90329f40381ef75c98c794ea0298c Mon Sep 17 00:00:00 2001 From: "graehl@gmail.com" Date: Sun, 15 Aug 2010 04:08:59 +0000 Subject: cfg test git-svn-id: https://ws10smt.googlecode.com/svn/trunk@552 ec762483-ff6d-05da-a07a-a48fb63a330f --- decoder/hg_cfg.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'decoder/hg_cfg.h') diff --git a/decoder/hg_cfg.h b/decoder/hg_cfg.h index 0a3eb53c..64a0e767 100755 --- a/decoder/hg_cfg.h +++ b/decoder/hg_cfg.h @@ -7,12 +7,14 @@ class Hypergraph; // in case you might want the CFG whether or not you apply FSA models: struct HgCFG { - HgCFG(Hypergraph const& ih) : ih(ih) { have_cfg=binarized=false; } + HgCFG(Hypergraph const& ih) : ih(ih) { have_cfg=binarized=false;have_features=false; } Hypergraph const& ih; CFG cfg; bool have_cfg; + bool have_features; + bool want_features; void InitCFG(CFG &to) { - to.Init(ih,true,false,true); + to.Init(ih,true,want_features,true); } bool binarized; CFG &GetCFG() -- cgit v1.2.3