aboutsummaryrefslogtreecommitdiff
path: root/src/config.hh
blob: d1bc9f23411aa59763602f061883015e033ea364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// config.hh -- compile-time configuration for AHFinderDirect
// $Id$

#ifndef CCTK_VARIABLE_REAL
   // we must be doing a test compilation outside of Cactus
   typedef double CCTK_REAL;
   typedef int    CCTK_INT;
#endif
typedef CCTK_REAL fp;

//
// The angular finite differencing in our multipatch system can be
// either 2nd order or 4th order, configurable here.
//
#ifdef FINITE_DIFF_ORDER
  // someone (probably a Makefile) has already defined this ==> leave it alone
#else
  #define FINITE_DIFF_ORDER	4
#endif