diff options
author | graehl@gmail.com <graehl@gmail.com@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-15 07:39:01 +0000 |
---|---|---|
committer | graehl@gmail.com <graehl@gmail.com@ec762483-ff6d-05da-a07a-a48fb63a330f> | 2010-08-15 07:39:01 +0000 |
commit | 80c952989dfbc05b482a7a8265d0ca73079ee894 (patch) | |
tree | e1306f8c49006d34ab6418d8678c051e04358ef9 /decoder/hg_cfg.h | |
parent | 214c741eee9b01ccd05a1825ad9ed647adef41db (diff) |
really fixed binarization. test
git-svn-id: https://ws10smt.googlecode.com/svn/trunk@555 ec762483-ff6d-05da-a07a-a48fb63a330f
Diffstat (limited to 'decoder/hg_cfg.h')
-rwxr-xr-x | decoder/hg_cfg.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/decoder/hg_cfg.h b/decoder/hg_cfg.h index 64a0e767..ba936990 100755 --- a/decoder/hg_cfg.h +++ b/decoder/hg_cfg.h @@ -7,7 +7,9 @@ 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;have_features=false; } + HgCFG(Hypergraph const& ih) : ih(ih) { + have_cfg=binarized=have_features=uniqed=false; + } Hypergraph const& ih; CFG cfg; bool have_cfg; @@ -17,6 +19,7 @@ struct HgCFG { to.Init(ih,true,want_features,true); } bool binarized; + bool uniqed; CFG &GetCFG() { if (!have_cfg) { |