aboutsummaryrefslogtreecommitdiff
path: root/include/types.h
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 21:46:45 +0200
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2016-05-16 21:46:45 +0200
commitadc1c7bbb2a7993dc87cee4091f7a8bdc1b79c97 (patch)
treec0a2493fdae436b67247628e2ee0329ba4b3afa7 /include/types.h
parentremove superfluous files (diff)
downloadgensvm-adc1c7bbb2a7993dc87cee4091f7a8bdc1b79c97.tar.gz
gensvm-adc1c7bbb2a7993dc87cee4091f7a8bdc1b79c97.zip
rename types to conform with naming convention
Diffstat (limited to 'include/types.h')
-rw-r--r--include/types.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/types.h b/include/types.h
deleted file mode 100644
index 3a17461..0000000
--- a/include/types.h
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
- * @file types.h
- * @author Gertjan van den Burg
- * @date August, 2013
- * @brief Definitions of common types
- *
- * @details
- * Here common types used throughout the program are defined.
- *
- */
-
-#ifndef GENSVM_TYPES_H
-#define GENSVM_TYPES_H
-
-/**
- * @brief type of training used in parameter grid search
- */
-typedef enum {
- CV=0, /**< cross validation */
- TT=1 /**< data with existing train/test split */
-} TrainType;
-
-/**
- * @brief type of kernel used in training
- */
-typedef enum {
- K_LINEAR=0, /**< Linear kernel */
- K_POLY=1, /**< Polynomial kernel */
- K_RBF=2, /**< RBF kernel */
- K_SIGMOID=3, /**< Sigmoid kernel */
-} KernelType;
-
-#endif