summaryrefslogtreecommitdiff
path: root/training/kbest_repository.h
diff options
context:
space:
mode:
authorChris Dyer <cdyer@cs.cmu.edu>2012-05-27 23:25:16 -0400
committerChris Dyer <cdyer@cs.cmu.edu>2012-05-27 23:25:16 -0400
commit104aad02a868c1fc6320276d9b3b9b0e1f41f457 (patch)
tree7bd9e092ed2d008024ae2834b3582c86c5394f7a /training/kbest_repository.h
parentfc936db02d42cc3978a4cc2017efe7a15c78855d (diff)
fix mapper to use common candidate set code
Diffstat (limited to 'training/kbest_repository.h')
-rw-r--r--training/kbest_repository.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/training/kbest_repository.h b/training/kbest_repository.h
deleted file mode 100644
index 0345394a..00000000
--- a/training/kbest_repository.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#ifndef _KBEST_REPOSITORY_H_
-#define _KBEST_REPOSITORY_H_
-
-#include <vector>
-#include "wordid.h"
-#include "ns.h"
-#include "sparse_vector.h"
-
-class KBestRepository {
- struct HypInfo {
- std::vector<WordID> words;
- SparseVector<double> x;
- SufficientStats score_stats;
- };
-
- std::vector<HypInfo> candidates;
-};
-
-#endif