diff options
| author | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-16 21:44:08 +0200 |
|---|---|---|
| committer | Gertjan van den Burg <gertjanvandenburg@gmail.com> | 2016-05-16 21:44:08 +0200 |
| commit | 3d339b2311f3b5234f6433131885b638b2ef7357 (patch) | |
| tree | af69a2db5d733745d844ca38e30bd76ba7e94f34 /include/libGenSVM.h | |
| parent | create a single training function for easy external access (diff) | |
| download | gensvm-3d339b2311f3b5234f6433131885b638b2ef7357.tar.gz gensvm-3d339b2311f3b5234f6433131885b638b2ef7357.zip | |
remove superfluous files
Diffstat (limited to 'include/libGenSVM.h')
| -rw-r--r-- | include/libGenSVM.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/include/libGenSVM.h b/include/libGenSVM.h deleted file mode 100644 index 146fc67..0000000 --- a/include/libGenSVM.h +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @file libGenSVM.h - * @author Gertjan van den Burg - * @date August, 2013 - * @brief Header file for the core GenSVM library libGenSVM.c - * - * @details - * The core computational routines for GenSVM are defined in libGenSVM.c. - * This file contains function declarations for these functions. - * - */ - -/** - * @todo - * rename this file and libGenSVM.c to correspond with the lowercase convention. - * Also change the name of the include guard. - */ -#ifndef LIBGENSVM_H -#define LIBGENSVM_H - -// forward declarations -struct GenData; -struct GenModel; - -// function declarations -void gensvm_category_matrix(struct GenModel *model, struct GenData *data); -void gensvm_simplex_diff(struct GenModel *model, struct GenData *dataset); - -void gensvm_calculate_errors(struct GenModel *model, struct GenData *data, - double *ZV); -void gensvm_calculate_huber(struct GenModel *model); - -void gensvm_step_doubling(struct GenModel *model); - - -#endif |
