Skip to content

Commit

Permalink
break formatting
Browse files Browse the repository at this point in the history
Signed-off-by: Anant Thazhemadam <[email protected]>
  • Loading branch information
thazhemadam committed Apr 8, 2024
1 parent a913c3d commit ba3cd77
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/kiops.jl
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ References:
- Niesen, J. and Wright, W.M., 2011. A Krylov subspace method for option pricing. SSRN 1799124
- Niesen, J. and Wright, W.M., 2012. Algorithm 919: A Krylov subspace algorithm for evaluating the ``φ``-functions appearing in exponential integrators. ACM Transactions on Mathematical Software (TOMS), 38(3), p.22
"""
function kiops(tau_out, A, u; mmin::Int = 10, mmax::Int = 128, m::Int = min(mmin, mmax),
function kiops(tau_out,
A, u; mmin::Int = 10, mmax::Int = 128, m::Int = min(mmin, mmax),
tol::Real = 1e-7, opnorm = LinearAlgebra.opnorm(A, Inf), iop::Int = 2,
ishermitian::Bool = LinearAlgebra.ishermitian(A), task1::Bool = false)
n, ppo = size(u, 1), size(u, 2)
Expand Down

0 comments on commit ba3cd77

Please sign in to comment.