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_io.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/gensvm_io.h') diff --git a/include/gensvm_io.h b/include/gensvm_io.h index 4581c5f..9b0d973 100644 --- a/include/gensvm_io.h +++ b/include/gensvm_io.h @@ -12,9 +12,9 @@ #ifndef GENSVM_IO_H #define GENSVM_IO_H -// forward declarations -struct GenData; -struct GenModel; +// includes +#include "gensvm_base.h" +#include "gensvm_strutil.h" // function declarations void gensvm_read_data(struct GenData *dataset, char *data_file); @@ -24,5 +24,6 @@ void gensvm_write_model(struct GenModel *model, char *output_filename); void gensvm_write_predictions(struct GenData *data, long *predy, char *output_filename); +void gensvm_time_string(char *buffer); #endif -- cgit v1.2.3