aboutsummaryrefslogtreecommitdiff
path: root/include/msvmmaj_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/msvmmaj_io.h')
-rw-r--r--include/msvmmaj_io.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/include/msvmmaj_io.h b/include/msvmmaj_io.h
deleted file mode 100644
index 99fb4dc..0000000
--- a/include/msvmmaj_io.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/**
- * @file msvmmaj_io.h
- * @author Gertjan van den Burg
- * @date January, 2014
- * @brief Header files for msvmmaj_io.c
- *
- * @details
- * Function declarations for input/output functions.
- *
- */
-
-#ifndef MSVMMAJ_IO_H
-#define MSVMMAJ_IO_H
-
-#include "globals.h"
-
-// forward declarations
-struct MajData;
-struct MajModel;
-
-// function declarations
-void msvmmaj_read_data(struct MajData *dataset, char *data_file);
-
-void msvmmaj_read_model(struct MajModel *model, char *model_filename);
-void msvmmaj_write_model(struct MajModel *model, char *output_filename);
-
-void msvmmaj_write_predictions(struct MajData *data, long *predy,
- char *output_filename);
-
-#endif