#ifndef _KBEST_REPOSITORY_H_ #define _KBEST_REPOSITORY_H_ #include #include "wordid.h" #include "ns.h" #include "sparse_vector.h" class KBestRepository { struct HypInfo { std::vector words; SparseVector x; SufficientStats score_stats; }; std::vector candidates; }; #endif