blob: 8347b953b90ee0fe4be30aea58123b375f163fc1 (
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, struct GenData *data);
#endif
|