diff options
author | Patrick Simianer <p@simianer.de> | 2011-10-19 21:41:00 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2011-10-19 21:41:00 +0200 |
commit | 18ba09140e937bde6c94247640484fe44f7cd665 (patch) | |
tree | ddec8b18716aaae6b87469ed82e89453903403b1 /klm/lm/model_test.cc | |
parent | ef2df950520a47ca7011736648334eedeae5297a (diff) |
debug
Diffstat (limited to 'klm/lm/model_test.cc')
-rw-r--r-- | klm/lm/model_test.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/klm/lm/model_test.cc b/klm/lm/model_test.cc index 3585d34b..2654071f 100644 --- a/klm/lm/model_test.cc +++ b/klm/lm/model_test.cc @@ -264,14 +264,6 @@ template <class M> void NoUnkCheck(const M &model) { BOOST_CHECK_CLOSE(-100.0, ret.prob, 0.001); } -template <class M> void NoUnkCheck(const M &model) { - WordIndex unk_index = 0; - State state; - - FullScoreReturn ret = model.FullScoreForgotState(&unk_index, &unk_index + 1, unk_index, state); - BOOST_CHECK_CLOSE(-100.0, ret.prob, 0.001); -} - template <class M> void Everything(const M &m) { Starters(m); Continuation(m); |