summaryrefslogtreecommitdiff
path: root/decoder/hg_cfg.h
diff options
context:
space:
mode:
Diffstat (limited to 'decoder/hg_cfg.h')
-rwxr-xr-xdecoder/hg_cfg.h6
1 files changed, 4 insertions, 2 deletions
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()