aboutsummaryrefslogtreecommitdiff
path: root/include/libMSVMMaj.h
diff options
context:
space:
mode:
authorGertjan van den Burg <burg@ese.eur.nl>2014-08-25 14:38:03 +0200
committerGertjan van den Burg <burg@ese.eur.nl>2014-08-25 14:38:03 +0200
commit1e340d509f229120eb3aaa98c91028dc3c0d3305 (patch)
treedd6b65c428447f179133e967eb0e0d3ce15f68ec /include/libMSVMMaj.h
parentfree some work arrays (diff)
downloadgensvm-1e340d509f229120eb3aaa98c91028dc3c0d3305.tar.gz
gensvm-1e340d509f229120eb3aaa98c91028dc3c0d3305.zip
rename msvmmaj to gensvm
Diffstat (limited to 'include/libMSVMMaj.h')
-rw-r--r--include/libMSVMMaj.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/include/libMSVMMaj.h b/include/libMSVMMaj.h
deleted file mode 100644
index a9bd789..0000000
--- a/include/libMSVMMaj.h
+++ /dev/null
@@ -1,42 +0,0 @@
-/**
- * @file libMSVMMaj.h
- * @author Gertjan van den Burg
- * @date August, 2013
- * @brief Header file for the core MSVMMaj library libMSVMMaj.c
- *
- * @details
- * The core computational routines for MSVMMaj are defined in libMSVMMaj.c.
- * This file contains function declarations for these functions.
- *
- */
-
-/**
- * @todo
- * rename this file and libMSVMMaj.c to correspond with the lowercase convention.
- * Also change the name of the include guard.
- */
-#ifndef LIBMSVMMAJ_H
-#define LIBMSVMMAJ_H
-
-#include "globals.h"
-
-// forward declarations
-struct MajData;
-struct MajModel;
-
-// function declarations
-void msvmmaj_simplex_gen(long K, double *U);
-void msvmmaj_category_matrix(struct MajModel *model, struct MajData *data);
-void msvmmaj_simplex_diff(struct MajModel *model, struct MajData *dataset);
-
-void msvmmaj_calculate_errors(struct MajModel *model, struct MajData *data,
- double *ZV);
-void msvmmaj_calculate_huber(struct MajModel *model);
-
-void msvmmaj_step_doubling(struct MajModel *model);
-
-void msvmmaj_seed_model_V(struct MajModel *from_model,
- struct MajModel *to_model, struct MajData *data);
-void msvmmaj_initialize_weights(struct MajData *data, struct MajModel *model);
-
-#endif