forked from ClimateGlobalChange/tempestremap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Defines.h
35 lines (25 loc) · 991 Bytes
/
Defines.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
///////////////////////////////////////////////////////////////////////////////
///
/// \file OverlapMesh.h
/// \author Paul Ullrich
/// \version March 7, 2014
///
/// <remarks>
/// Copyright 2000-2014 Paul Ullrich
///
/// This file is distributed as part of the Tempest source code package.
/// Permission is granted to use, copy, modify and distribute this
/// source code and its documentation under the terms of the GNU General
/// Public License. This software is provided "as is" without express
/// or implied warranty.
/// </remarks>
#ifndef _DEFINES_H_
#define _DEFINES_H_
///////////////////////////////////////////////////////////////////////////////
#define USE_EXACT_ARITHMETIC
///////////////////////////////////////////////////////////////////////////////
typedef double Real;
static const Real HighTolerance = 1.0e-10;
static const Real ReferenceTolerance = 1.0e-12;
///////////////////////////////////////////////////////////////////////////////
#endif