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
Merge requests
!47
Throw error when LDL factorisation fails
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Throw error when LDL factorisation fails
feature/throw_error_ldl
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Marco Agnese
requested to merge
feature/throw_error_ldl
into
master
8 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
731cf884
1 commit,
8 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dune/istl/ldl.hh
+
2
−
2
Options
@@ -286,7 +286,7 @@ namespace Dune {
double
Info
[
AMD_INFO
];
if
(
amd_order
(
dimMat
,
ldlMatrix_
.
getColStart
(),
ldlMatrix_
.
getRowIndex
(),
P_
,
(
double
*
)
NULL
,
Info
)
<
AMD_OK
)
std
::
cout
<<
"WARNING: call to AMD failed."
<<
std
::
endl
;
DUNE_THROW
(
InvalidStateException
,
"Error: AMD failed!"
)
;
if
(
verbose_
>
0
)
amd_info
(
Info
);
// compute the symbolic factorisation
@@ -304,7 +304,7 @@ namespace Dune {
delete
[]
Lnz_
;
if
(
rank
!=
dimMat
)
std
::
cout
<<
"WARNING: matrix is singular."
<<
std
::
endl
;
DUNE_THROW
(
InvalidStateException
,
"Error: LDL factorisation failed!"
)
;
}
LDLMatrix
ldlMatrix_
;
Loading