aboutsummaryrefslogtreecommitdiff
path: root/include/msvmmaj_init.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/msvmmaj_init.h
parentfree some work arrays (diff)
downloadgensvm-1e340d509f229120eb3aaa98c91028dc3c0d3305.tar.gz
gensvm-1e340d509f229120eb3aaa98c91028dc3c0d3305.zip
rename msvmmaj to gensvm
Diffstat (limited to 'include/msvmmaj_init.h')
-rw-r--r--include/msvmmaj_init.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/msvmmaj_init.h b/include/msvmmaj_init.h
deleted file mode 100644
index 281214c..0000000
--- a/include/msvmmaj_init.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/**
- * @file msvmmaj_init.h
- * @author Gertjan van den Burg
- * @date January, 2014
- * @brief Header file for msvmmaj_init.c
- *
- * @details
- * Contains function declarations for the initialization functions for
- * MajModel and MajData structures.
- */
-
-#ifndef MSVMMAJ_INIT_H
-#define MSVMMAJ_INIT_H
-
-// forward declaration
-struct MajData;
-struct MajModel;
-
-struct MajModel *msvmmaj_init_model();
-
-struct MajData *msvmmaj_init_data();
-
-void msvmmaj_allocate_model(struct MajModel *model);
-void msvmmaj_reallocate_model(struct MajModel *model, long n, long m);
-void msvmmaj_free_model(struct MajModel *model);
-void msvmmaj_free_data(struct MajData *data);
-
-#endif