summaryrefslogtreecommitdiff
path: root/decoder/lazy.h
diff options
context:
space:
mode:
Diffstat (limited to 'decoder/lazy.h')
-rw-r--r--decoder/lazy.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/decoder/lazy.h b/decoder/lazy.h
new file mode 100644
index 00000000..94895b19
--- /dev/null
+++ b/decoder/lazy.h
@@ -0,0 +1,11 @@
+#ifndef _LAZY_H_
+#define _LAZY_H_
+
+#include "weights.h"
+#include <vector>
+
+class Hypergraph;
+
+void PassToLazy(const char *model_file, const std::vector<weight_t> &weights, unsigned int pop_limit, const Hypergraph &hg);
+
+#endif // _LAZY_H_