Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aland, Sebastian
amdis
Commits
d93ad598
Commit
d93ad598
authored
Oct 13, 2014
by
Wieland Marth
Browse files
DOFVector.h
parent
eeb66c61
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/DOFVector.h
View file @
d93ad598
...
...
@@ -524,7 +524,7 @@ namespace AMDiS {
/// Calculates L2 norm of this DOFVector
inline
double
L2Norm
(
Quadrature
*
q
=
nullptr
)
const
{
return
sqrt
(
L2NormSquare
());
return
std
::
sqrt
(
L2NormSquare
());
}
/// Calculates square of L2 norm of this DOFVector
...
...
@@ -533,7 +533,7 @@ namespace AMDiS {
/// Calculates H1 norm of this DOFVector
inline
double
H1Norm
(
Quadrature
*
q
=
nullptr
)
const
{
return
sqrt
(
H1NormSquare
());
return
std
::
sqrt
(
H1NormSquare
());
}
/// Calculates square of H1 norm of this DOFVector
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment