aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_sv.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gensvm_sv.h')
-rw-r--r--include/gensvm_sv.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/gensvm_sv.h b/include/gensvm_sv.h
new file mode 100644
index 0000000..5664f83
--- /dev/null
+++ b/include/gensvm_sv.h
@@ -0,0 +1,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