blob: 94895b19feb181dff8fae83ba837f57b99d959cd (
plain)
1
2
3
4
5
6
7
8
9
10
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_
|