summaryrefslogtreecommitdiff
path: root/training/dpmert/ces.h
blob: b179499dc5db9071c0f2c23af4aa5f7314310302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _CES_H_
#define _CES_H_

struct ConvexHull;
class Hypergraph;
struct SegmentEvaluator;
class ErrorSurface;
class EvaluationMetric;

void ComputeErrorSurface(const SegmentEvaluator& ss,
                         const ConvexHull& convex_hull,
                         ErrorSurface* es,
                         const EvaluationMetric* metric,
                         const Hypergraph& hg);

#endif