aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 21:44:08 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 21:44:08 +0200
commit3d339b2311f3b5234f6433131885b638b2ef7357 (patch)
treeaf69a2db5d733745d844ca38e30bd76ba7e94f34 /src
parentcreate a single training function for easy external access (diff)
downloadgensvm-3d339b2311f3b5234f6433131885b638b2ef7357.tar.gz
gensvm-3d339b2311f3b5234f6433131885b638b2ef7357.zip
remove superfluous files
Diffstat (limited to 'src')
-rw-r--r--src/gensvm_lapack.c13
-rw-r--r--src/libGenSVM.c23
2 files changed, 0 insertions, 36 deletions
diff --git a/src/gensvm_lapack.c b/src/gensvm_lapack.c
deleted file mode 100644
index 2a9c120..0000000
--- a/src/gensvm_lapack.c
+++ /dev/null
@@ -1,13 +0,0 @@
-/**
- * @file gensvm_lapack.c
- * @author Gertjan van den Burg
- * @date August 9, 2013
- * @brief Utility functions for interacting with LAPACK
- *
- * @details
- * Functions in this file are auxiliary functions which make it easier
- * to use LAPACK functions from liblapack.
- */
-
-#include "gensvm_lapack.h"
-
diff --git a/src/libGenSVM.c b/src/libGenSVM.c
deleted file mode 100644
index 8917a3e..0000000
--- a/src/libGenSVM.c
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- * @file libGenSVM.c
- * @author Gertjan van den Burg
- * @date August 8, 2013
- * @brief Main functions for the GenSVM algorithm
- *
- * @details
- * The functions in this file are all functions needed
- * to calculate the optimal separation boundaries for
- * a multiclass classification problem, using the
- * GenSVM algorithm.
- *
- */
-
-#include <cblas.h>
-#include <math.h>
-
-#include "globals.h"
-#include "libGenSVM.h"
-#include "gensvm.h"
-#include "gensvm_matrix.h"
-
-