blob: 2cccf504b995185c801dcd103f58bdc9faf45a74 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef OPCUT_POOL_H
#define OPCUT_POOL_H
#include <stddef.h>
#include "common.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
OPCUT_METHOD_GREEDY,
OPCUT_METHOD_FORWARD_GREEDY
} opcut_method_t;
int opcut_calculate(opcut_method_t method, opcut_params_t *params,
opcut_result_t *result);
#ifdef __cplusplus
}
#endif
#endif
|