Skip to content
Snippets Groups Projects
Commit 006a6ded authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

[!712] Fixed Lapackcall for eigenvectors

Merge branch 'master' into 'master'

ref:core/dune-common Replaced nullptr argument in Lapack call with vr.get()

See merge request [core/dune-common!712]

  [core/dune-common!712]: gitlab.dune-project.org/core/dune-common/merge_requests/712
parents ea3c53dd 18ec0b8b
No related branches found
No related tags found
No related merge requests found
......@@ -69,7 +69,7 @@ namespace Dune {
// call LAPACK routine (see fmatrixev_ext.cc)
eigenValuesNonsymLapackCall(&jobvl, &jobvr, &N, matrixVector.get(), &N,
eigenR.get(), eigenI.get(), nullptr, &N, nullptr, &N, work.get(),
eigenR.get(), eigenI.get(), nullptr, &N, vr.get(), &N, work.get(),
&lwork, &info);
if( info != 0 )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment