aboutsummaryrefslogtreecommitdiff
path: root/include/gensvm_train.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gensvm_train.h')
-rw-r--r--include/gensvm_train.h29
1 files changed, 0 insertions, 29 deletions
diff --git a/include/gensvm_train.h b/include/gensvm_train.h
deleted file mode 100644
index 466b8e2..0000000
--- a/include/gensvm_train.h
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * @file gensvm_train.h
- * @author Gertjan van den Burg
- * @date August, 2013
- * @brief Header file for gensvm_train.c
- *
- * @details
- * Contains function declarations for functions used to train a single
- * GenModel.
- *
- */
-
-#ifndef GENSVM_TRAIN_H
-#define GENSVM_TRAIN_H
-
-//forward declarations
-struct GenData;
-struct GenModel;
-
-// function declarations
-void gensvm_optimize(struct GenModel *model, struct GenData *data);
-
-double gensvm_get_loss(struct GenModel *model, struct GenData *data,
- double *ZV);
-
-void gensvm_get_update(struct GenModel *model, struct GenData *data,
- double *B, double *ZAZ, double *ZAZV, double *ZAZVT);
-
-#endif