aboutsummaryrefslogtreecommitdiff
path: root/src/Given.c
blob: 19fb9be0f1ee165494bfb6984398e73e9ac04648 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 /*@@
   @file      Given.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;  
}