From 07df48225553adc441aa68d65a518b145b80a7f5 Mon Sep 17 00:00:00 2001 From: Dominic Steinitz Date: Wed, 14 Mar 2018 06:53:36 +0000 Subject: The full almost entirely C example tidied --- packages/sundials/MyMain.c | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 packages/sundials/MyMain.c (limited to 'packages/sundials/MyMain.c') diff --git a/packages/sundials/MyMain.c b/packages/sundials/MyMain.c deleted file mode 100644 index 1a7f579..0000000 --- a/packages/sundials/MyMain.c +++ /dev/null @@ -1,19 +0,0 @@ -#include -#include -#include /* prototypes for ARKODE fcts., consts. */ -#include /* serial N_Vector types, fcts., macros */ -#include /* access to dense SUNMatrix */ -#include /* access to dense SUNLinearSolver */ -#include /* access to ARKDls interface */ -#include /* definition of type realtype */ -#include - -#include "src/helpers.h" - -int main () { - sunindextype NEQ = 1; /* number of dependent vars. */ - N_Vector y = NULL; /* empty vector for storing solution */ - y = N_VNew_Serial(NEQ); /* Create serial vector for solution */ - if (check_flag((void *)y, "N_VNew_Serial", 0)) return 1; - return 0; -} -- cgit v1.2.3