Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
dumux-repositories
dumux
Commits
38ff5b82
Commit
38ff5b82
authored
Dec 12, 2017
by
Dennis Gläser
Browse files
[math][trace] remove unused variable
parent
ec91f5e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
dumux/common/math.hh
View file @
38ff5b82
...
...
@@ -606,9 +606,8 @@ template <class Scalar>
Scalar
trace
(
const
Dune
::
DynamicMatrix
<
Scalar
>&
M
)
{
std
::
size_t
rows_T
=
M
.
M
();
std
::
size_t
cols_T
=
M
.
N
();
DUNE_ASSERT_BOUNDS
(
rows_T
==
cols_T
);
DUNE_ASSERT_BOUNDS
(
rows_T
==
M
.
N
()
);
Scalar
trace
=
0.0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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