blob: 2f098990bcab5134bbadbfbe8dc7574696f48fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _CES_H_
#define _CES_H_
#include "scorer.h"
class ViterbiEnvelope;
class Hypergraph;
class ErrorSurface;
void ComputeErrorSurface(const SentenceScorer& ss, const ViterbiEnvelope& ve, ErrorSurface* es, const ScoreType type, const Hypergraph& hg);
#endif
|