diff options
Diffstat (limited to 'decoder/lazy.h')
-rw-r--r-- | decoder/lazy.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/decoder/lazy.h b/decoder/lazy.h index aecd030d..3e71a3b0 100644 --- a/decoder/lazy.h +++ b/decoder/lazy.h @@ -1,8 +1,11 @@ #ifndef _LAZY_H_ #define _LAZY_H_ +#include "weights.h" +#include <vector> + class Hypergraph; -void PassToLazy(const Hypergraph &hg); +void PassToLazy(const Hypergraph &hg, const std::vector<weight_t> &weights); #endif // _LAZY_H_ |