summaryrefslogtreecommitdiff
path: root/decoder/incremental.h
blob: 180383ce6adc6506d2142f4017e9541cd26cf253 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _INCREMENTAL_H_
#define _INCREMENTAL_H_

#include "weights.h"
#include <vector>

class Hypergraph;

void PassToIncremental(const char *model_file, const std::vector<weight_t> &weights, unsigned int pop_limit, const Hypergraph &hg);

#endif // _INCREMENTAL_H_