Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-istl
Commits
aa1a5e47
Commit
aa1a5e47
authored
6 years ago
by
Jö Fahlke
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into feature/update-ci-config-for-master
parents
b73bebd5
9da2de98
No related branches found
No related tags found
No related merge requests found
Pipeline
#10498
failed
6 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/istl/eigenvalue/test/matrixinfo.hh
+3
-3
3 additions, 3 deletions
dune/istl/eigenvalue/test/matrixinfo.hh
with
3 additions
and
3 deletions
dune/istl/eigenvalue/test/matrixinfo.hh
+
3
−
3
View file @
aa1a5e47
...
...
@@ -5,7 +5,7 @@
#include
<cmath>
// provides std::abs and std::sqrt
#include
<cassert>
// provides assert
#include
<limits>
#include
<iostream>
// provides std::cout, std::endl
#include
<dune/common/exceptions.hh>
// provides DUNE_THROW(...), Dune::Exception
...
...
@@ -191,7 +191,7 @@ protected:
// 7) get smallest magnitude eigenvalue via TLIME iteration
// (assume that m_ is symmetric)
{
const
Real
epsilon
=
1e-11
;
const
Real
epsilon
=
std
::
sqrt
(
std
::
numeric_limits
<
Real
>::
epsilon
())
;
x
=
1.0
;
// 7.1) perform TLIME iteration for smallest magnitude
// eigenvalue
...
...
@@ -322,7 +322,7 @@ protected:
// 9) get smallest singular value as square root of the smallest
// magnitude eigenvalue of m^t*m via TLIME iteration
{
const
Real
epsilon
=
1e-11
;
const
Real
epsilon
=
std
::
sqrt
(
std
::
numeric_limits
<
Real
>::
epsilon
())
;
x
=
1.0
;
// 9.1) perform TLIME iteration for smallest magnitude
// eigenvalue of m^t*m
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment