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

//
// prerequisites:
//	"cctk.h" or "fake_cctk.h"
//

typedef CCTK_REAL fp;

// FIXME: this assumes fp == C 'double'
#define FP_SCANF_FORMAT "%lf"

//
// 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