blob: b47d6228d7edc77fda7a875e2163f50c2aa0d19a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @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
// includes
#include "gensvm_base.h"
// function declarations
long gensvm_num_sv(struct GenModel *model);
#endif
|