aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-09 21:54:44 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-09 21:54:44 +0200
commitdf765b2a259822e892cfa3038c8cbbf678b26de5 (patch)
tree400ef522e376389c1d6769481a6ed51f7ef188e9 /include
parentupdate doxyfile to 1.8.7 (diff)
downloadgensvm-df765b2a259822e892cfa3038c8cbbf678b26de5.tar.gz
gensvm-df765b2a259822e892cfa3038c8cbbf678b26de5.zip
make dependence on globals.h explicit
Diffstat (limited to 'include')
-rw-r--r--include/gensvm.h1
-rw-r--r--include/gensvm_crossval.h2
-rw-r--r--include/gensvm_io.h2
-rw-r--r--include/gensvm_kernel.h2
-rw-r--r--include/gensvm_lapack.h2
-rw-r--r--include/gensvm_matrix.h2
-rw-r--r--include/gensvm_pred.h2
-rw-r--r--include/gensvm_strutil.h1
-rw-r--r--include/gensvm_sv.h2
-rw-r--r--include/gensvm_timer.h2
-rw-r--r--include/gensvm_train.h2
-rw-r--r--include/gensvm_train_dataset.h1
-rw-r--r--include/gensvm_util.h2
-rw-r--r--include/libGenSVM.h2
14 files changed, 0 insertions, 25 deletions
diff --git a/include/gensvm.h b/include/gensvm.h
index ef85157..24708bc 100644
--- a/include/gensvm.h
+++ b/include/gensvm.h
@@ -12,7 +12,6 @@
#ifndef GENSVM_H
#define GENSVM_H
-#include "globals.h"
#include "types.h"
/**
diff --git a/include/gensvm_crossval.h b/include/gensvm_crossval.h
index fa3cca7..3ac5fa9 100644
--- a/include/gensvm_crossval.h
+++ b/include/gensvm_crossval.h
@@ -13,8 +13,6 @@
#ifndef GENSVM_CROSSVAL_H
#define GENSVM_CROSSVAL_H
-#include "globals.h"
-
// forward delaration
struct GenData;
diff --git a/include/gensvm_io.h b/include/gensvm_io.h
index 73c24bd..4581c5f 100644
--- a/include/gensvm_io.h
+++ b/include/gensvm_io.h
@@ -12,8 +12,6 @@
#ifndef GENSVM_IO_H
#define GENSVM_IO_H
-#include "globals.h"
-
// forward declarations
struct GenData;
struct GenModel;
diff --git a/include/gensvm_kernel.h b/include/gensvm_kernel.h
index d01eb88..45b7e62 100644
--- a/include/gensvm_kernel.h
+++ b/include/gensvm_kernel.h
@@ -14,8 +14,6 @@
#ifndef GENSVM_KERNEL_H
#define GENSVM_KERNEL_H
-#include "globals.h"
-
// forward declarations
struct GenData;
struct GenModel;
diff --git a/include/gensvm_lapack.h b/include/gensvm_lapack.h
index a664cba..c4e58e8 100644
--- a/include/gensvm_lapack.h
+++ b/include/gensvm_lapack.h
@@ -12,8 +12,6 @@
#ifndef GENSVM_LAPACK_H
#define GENSVM_LAPACK_H
-#include "globals.h"
-
int dposv(char UPLO, int N, int NRHS, double *A, int LDA, double *B,
int LDB);
int dsysv(char UPLO, int N, int NRHS, double *A, int LDA, int *IPIV,
diff --git a/include/gensvm_matrix.h b/include/gensvm_matrix.h
index 01be3da..5c88f0b 100644
--- a/include/gensvm_matrix.h
+++ b/include/gensvm_matrix.h
@@ -12,8 +12,6 @@
#ifndef GENSVM_MATRIX_H
#define GENSVM_MATRIX_H
-#include "globals.h"
-
// Set a matrix element (RowMajor)
#define matrix_set(M, cols, i, j, val) M[(i)*(cols)+j] = val
diff --git a/include/gensvm_pred.h b/include/gensvm_pred.h
index 76b3ad3..97af01f 100644
--- a/include/gensvm_pred.h
+++ b/include/gensvm_pred.h
@@ -12,8 +12,6 @@
#ifndef GENSVM_PRED_H
#define GENSVM_PRED_H
-#include "globals.h"
-
// forward declarations
struct GenData;
struct GenModel;
diff --git a/include/gensvm_strutil.h b/include/gensvm_strutil.h
index 2255d6e..c51422f 100644
--- a/include/gensvm_strutil.h
+++ b/include/gensvm_strutil.h
@@ -13,7 +13,6 @@
#ifndef GENSVM_STRUTIL_H
#define GENSVM_STRUTIL_H
-#include "globals.h"
#include "types.h"
bool str_startswith(const char *str, const char *pre);
diff --git a/include/gensvm_sv.h b/include/gensvm_sv.h
index 5664f83..2c7cf57 100644
--- a/include/gensvm_sv.h
+++ b/include/gensvm_sv.h
@@ -12,8 +12,6 @@
#ifndef GENSVM_SV_H
#define GENSVM_SV_H
-#include "globals.h"
-
long gensvm_num_sv(struct GenModel *model, struct GenData *data);
#endif
diff --git a/include/gensvm_timer.h b/include/gensvm_timer.h
index a1b60a7..29c45cd 100644
--- a/include/gensvm_timer.h
+++ b/include/gensvm_timer.h
@@ -12,8 +12,6 @@
#ifndef GENSVM_TIMER_H
#define GENSVM_TIMER_H
-#include "globals.h"
-
double elapsed_time(clock_t s_time, clock_t e_time);
void get_time_string(char *buffer);
diff --git a/include/gensvm_train.h b/include/gensvm_train.h
index f59359d..466b8e2 100644
--- a/include/gensvm_train.h
+++ b/include/gensvm_train.h
@@ -13,8 +13,6 @@
#ifndef GENSVM_TRAIN_H
#define GENSVM_TRAIN_H
-#include "globals.h"
-
//forward declarations
struct GenData;
struct GenModel;
diff --git a/include/gensvm_train_dataset.h b/include/gensvm_train_dataset.h
index c743bd7..9a3fe86 100644
--- a/include/gensvm_train_dataset.h
+++ b/include/gensvm_train_dataset.h
@@ -15,7 +15,6 @@
#ifndef GENSVM_TRAIN_DATASET_H
#define GENSVM_TRAIN_DATASET_H
-#include "globals.h"
#include "types.h"
// forward declarations
diff --git a/include/gensvm_util.h b/include/gensvm_util.h
index 2fd60e7..5ea2198 100644
--- a/include/gensvm_util.h
+++ b/include/gensvm_util.h
@@ -12,8 +12,6 @@
#ifndef GENSVM_UTIL_H
#define GENSVM_UTIL_H
-#include "globals.h"
-
// forward declarations
struct GenData;
struct GenModel;
diff --git a/include/libGenSVM.h b/include/libGenSVM.h
index dbf0903..9e2d4c2 100644
--- a/include/libGenSVM.h
+++ b/include/libGenSVM.h
@@ -18,8 +18,6 @@
#ifndef LIBGENSVM_H
#define LIBGENSVM_H
-#include "globals.h"
-
// forward declarations
struct GenData;
struct GenModel;