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
CoMISo
CoMISo
Commits
cdcbbcc4
Commit
cdcbbcc4
authored
Dec 05, 2016
by
Max Lyon
Browse files
fix wrong if condition
parent
517ebe66
Pipeline
#3777
passed with stage
in 6 minutes and 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
EigenSolver/EigenArpackMatrixT.hh
View file @
cdcbbcc4
...
...
@@ -66,7 +66,7 @@ public:
sllt_
.
compute
(
mat_
);
#if EIGEN_VERSION_AT_LEAST(3,1,0)
if
(
!
sllt_
.
info
()
!=
Eigen
::
Success
)
if
(
sllt_
.
info
()
!=
Eigen
::
Success
)
#else
if
(
!
sllt_
.
succeeded
()
)
#endif
...
...
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