We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ArnoldiWorkspace(n, k)
The docs provide the following example:
# allocates workspace for 20-dimensional Krylov subspace arnoldi = ArnoldiWorkspace(100, 20)
This gives a MethodError because the relevant constructor is ArnoldiWorkspace(::Type{T}, ::Int64, ::Int64) where T. Should be e.g.
ArnoldiWorkspace(::Type{T}, ::Int64, ::Int64) where T
arnoldi = ArnoldiWorkspace(ComplexF32, 100, 20)
(Maybe add a default value for the type argument?)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The docs provide the following example:
This gives a MethodError because the relevant constructor is
ArnoldiWorkspace(::Type{T}, ::Int64, ::Int64) where T
. Should be e.g.(Maybe add a default value for the type argument?)
The text was updated successfully, but these errors were encountered: