aboutsummaryrefslogtreecommitdiff
path: root/src/Given.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/Given.c')
-rw-r--r--src/Given.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Given.c b/src/Given.c
new file mode 100644
index 0000000..645c422
--- /dev/null
+++ b/src/Given.c
@@ -0,0 +1,25 @@
+ /*@@
+ @file Simple.c
+ @date September 4 1999
+ @author Gabrielle Allen
+ @desc
+ Standard specification of timestep
+ @enddesc
+ @@*/
+
+#include <stdlib.h>
+
+#include "cctk.h"
+#include "cctk_Arguments.h"
+#include "cctk_Parameters.h"
+
+void Time_Given(CCTK_ARGUMENTS)
+{
+ DECLARE_CCTK_PARAMETERS
+ DECLARE_CCTK_ARGUMENTS
+
+ cctkGH->cctk_delta_time = timestep;
+}
+
+
+