aboutsummaryrefslogtreecommitdiff
path: root/include/types.h
blob: b4db8d8db1235ea34289fd372736288c4fcc96d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef TYPES_H
#define TYPES_H

typedef enum {
	false,
	true
} bool;

typedef enum {
	CV=0,
	TT=1
} TrainType;

typedef enum {
	K_LINEAR=0,
	K_POLY=1,
	K_RBF=2,
	K_SIGMOID=3,
} KernelType;

#endif