aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_sv.h
blob: 5664f83fb918a61c1725bafe77949643e43a9d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * @file gensvm_sv.h
 * @author Gertjan van den Burg
 * @date May, 2014
 * @brief Header file for gensvm_sv.c
 *
 * @details
 * Contains function declarations for functions used to count support vectors.
 *
 */

#ifndef GENSVM_SV_H
#define GENSVM_SV_H

#include "globals.h"

long gensvm_num_sv(struct GenModel *model, struct GenData *data);

#endif