Skip to content

Commit b0cf071

Browse files
author
Kai Luo
committed
Fix: remove rwork parameter from heevx function call
1 parent 5b2eb79 commit b0cf071

File tree

1 file changed

+1
-1
lines changed
  • source/source_base/module_container/base/third_party

1 file changed

+1
-1
lines changed

source/source_base/module_container/base/third_party/lapack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ void heevx(const char jobz, const char range, const char uplo, const int n,
338338
ssyevx_(&jobz, &range, &uplo, &n,
339339
a, &lda, &vl, &vu, &il, &iu,
340340
&abstol, &m, w, z, &ldz,
341-
work, &lwork, rwork, iwork, ifail, &info);
341+
work, &lwork, iwork, ifail, &info);
342342
}
343343
// wrap function of fortran lapack routine zheevx.
344344
static inline

0 commit comments

Comments
 (0)