Loading [MathJax]/extensions/tex2jax.js
DUNE
Distributed and Unified Numerics Environment
Dune Core Modules (2.9.0)
Toggle main menu visibility
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Functions
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Variables
_
a
b
d
f
g
h
i
l
o
p
q
t
v
w
+
Typedefs
a
b
c
d
f
g
i
l
m
o
p
q
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
f
g
i
n
o
r
s
t
u
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
y
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Enumerations
+
Enumerator
b
c
e
f
g
i
l
n
o
p
r
s
u
v
+
Related Functions
a
c
d
f
h
i
l
o
u
+
Files
File List
+
File Members
+
All
c
d
f
k
t
Functions
Variables
Macros
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
dune
alugrid
common
alugrid_assert.hh
1
#ifndef ALUGRID_ASSERT_HH
2
#define ALUGRID_ASSERT_HH
3
4
#include <cassert>
5
6
// this is only of interest when NDEBUG is not set
7
// NOTE: defining NO_ALUGRID_DEBUG will disable all ALUGrid asserts
8
#ifndef NDEBUG
9
10
// enable ALUGrid debug mode by default unless NO_ALUGRID_DEBUG is set
11
#ifndef NO_ALUGRID_DEBUG
12
#define ALUGRIDDEBUG
13
#endif
14
15
#endif
// NDEBUG
16
17
#ifndef ALUGRIDDEBUG
18
# define alugrid_assert(EX) (static_cast<void>(0))
19
#else
20
# define alugrid_assert(EX) assert(EX)
21
#endif
22
23
#endif
// ALUGRID_ASSERT_HH
|
Legal Statements / Impressum
| Hosted by
TU Dresden
&
Uni Heidelberg
| generated with Hugo v0.111.3 (Mar 16, 23:47, 2025)