From 044dc5a93c33d7aa4c9c98a626890c16446a56fc Mon Sep 17 00:00:00 2001 From: Gertjan van den Burg Date: Mon, 16 May 2016 18:47:09 +0200 Subject: major refactor of the code --- include/gensvm_train.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 include/gensvm_train.h (limited to 'include/gensvm_train.h') 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 -- cgit v1.2.3