Hello,
When calling ARrcStdEig::FindEigenvalues, Valgrind complains about Conditional jump or move depends on uninitialised value(s) This is caused by HowMny not being initialized prior to the Fortran call.
Even though the value should not be referenced when only eigenvalues are computed, in dseupd.f it is checked before recv,
Hello, When calling
ARrcStdEig::FindEigenvalues
, Valgrind complains aboutConditional jump or move depends on uninitialised value(s)
This is caused byHowMny
not being initialized prior to the Fortran call. Even though the value should not be referenced when only eigenvalues are computed, indseupd.f
it is checked beforerecv
,The simplest solution would probably be to either give
HowMny
a default value, or set it to some value before callingEupp()