diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-09 21:54:44 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-09 21:54:44 +0200 |
| commit | df765b2a259822e892cfa3038c8cbbf678b26de5 (patch) | |
| tree | 400ef522e376389c1d6769481a6ed51f7ef188e9 /src | |
| parent | update doxyfile to 1.8.7 (diff) | |
| download | gensvm-df765b2a259822e892cfa3038c8cbbf678b26de5.tar.gz gensvm-df765b2a259822e892cfa3038c8cbbf678b26de5.zip | |
make dependence on globals.h explicit
Diffstat (limited to 'src')
| -rw-r--r-- | src/GenSVMgrid.c | 1 | ||||
| -rw-r--r-- | src/GenSVMtraintest.c | 1 | ||||
| -rw-r--r-- | src/gensvm_crossval.c | 1 | ||||
| -rw-r--r-- | src/gensvm_kernel.c | 1 | ||||
| -rw-r--r-- | src/gensvm_pred.c | 1 | ||||
| -rw-r--r-- | src/gensvm_strutil.c | 1 | ||||
| -rw-r--r-- | src/gensvm_timer.c | 1 | ||||
| -rw-r--r-- | src/gensvm_train_dataset.c | 1 | ||||
| -rw-r--r-- | src/gensvm_util.c | 1 | ||||
| -rw-r--r-- | src/libGenSVM.c | 1 |
10 files changed, 10 insertions, 0 deletions
diff --git a/src/GenSVMgrid.c b/src/GenSVMgrid.c index 3cf1346..89b85a7 100644 --- a/src/GenSVMgrid.c +++ b/src/GenSVMgrid.c @@ -21,6 +21,7 @@ #include <time.h> +#include "globals.h" #include "gensvm.h" #include "gensvm_crossval.h" #include "gensvm_io.h" diff --git a/src/GenSVMtraintest.c b/src/GenSVMtraintest.c index 955f4fa..0199725 100644 --- a/src/GenSVMtraintest.c +++ b/src/GenSVMtraintest.c @@ -12,6 +12,7 @@ #include <time.h> +#include "globals.h" #include "gensvm.h" #include "gensvm_io.h" #include "gensvm_init.h" diff --git a/src/gensvm_crossval.c b/src/gensvm_crossval.c index 6930166..8f09cb5 100644 --- a/src/gensvm_crossval.c +++ b/src/gensvm_crossval.c @@ -13,6 +13,7 @@ * */ +#include "globals.h" #include "gensvm.h" #include "gensvm_crossval.h" #include "gensvm_matrix.h" diff --git a/src/gensvm_kernel.c b/src/gensvm_kernel.c index 76413d1..1d7e5e4 100644 --- a/src/gensvm_kernel.c +++ b/src/gensvm_kernel.c @@ -14,6 +14,7 @@ #include <cblas.h> #include <math.h> +#include "globals.h" #include "gensvm.h" #include "gensvm_kernel.h" #include "gensvm_lapack.h" diff --git a/src/gensvm_pred.c b/src/gensvm_pred.c index 25a4cc5..15a6be6 100644 --- a/src/gensvm_pred.c +++ b/src/gensvm_pred.c @@ -14,6 +14,7 @@ #include <cblas.h> #include <math.h> +#include "globals.h" #include "libGenSVM.h" #include "gensvm.h" #include "gensvm_kernel.h" diff --git a/src/gensvm_strutil.c b/src/gensvm_strutil.c index 57e9399..97dec81 100644 --- a/src/gensvm_strutil.c +++ b/src/gensvm_strutil.c @@ -9,6 +9,7 @@ * format and checking start and ends of strings. */ +#include "globals.h" #include "gensvm_strutil.h" /** diff --git a/src/gensvm_timer.c b/src/gensvm_timer.c index 93cd77e..9802091 100644 --- a/src/gensvm_timer.c +++ b/src/gensvm_timer.c @@ -12,6 +12,7 @@ #include <time.h> +#include "globals.h" #include "gensvm_timer.h" /** diff --git a/src/gensvm_train_dataset.c b/src/gensvm_train_dataset.c index a70b457..d1650a7 100644 --- a/src/gensvm_train_dataset.c +++ b/src/gensvm_train_dataset.c @@ -12,6 +12,7 @@ #include <math.h> #include <time.h> +#include "globals.h" #include "libGenSVM.h" #include "gensvm.h" #include "gensvm_crossval.h" diff --git a/src/gensvm_util.c b/src/gensvm_util.c index 4353b40..d12a85c 100644 --- a/src/gensvm_util.c +++ b/src/gensvm_util.c @@ -11,6 +11,7 @@ */ #include <stdarg.h> +#include "globals.h" #include "gensvm_util.h" FILE *GENSVM_OUTPUT_FILE; ///< The #GENSVM_OUTPUT_FILE specifies the diff --git a/src/libGenSVM.c b/src/libGenSVM.c index c9b0b3c..8c22f3e 100644 --- a/src/libGenSVM.c +++ b/src/libGenSVM.c @@ -15,6 +15,7 @@ #include <cblas.h> #include <math.h> +#include "globals.h" #include "libGenSVM.h" #include "gensvm.h" #include "gensvm_matrix.h" |
