Skip to content

Commit

Permalink
JuliaFormatter.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Nov 7, 2023
1 parent e4ad79d commit 8892572
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/initialization/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ TaylorModeInit() = begin
throw(ArgumentError("order must be specified"))
end


"""
ForwardDiffInit(order)
Expand All @@ -65,7 +64,6 @@ ForwardDiffInit() = begin
throw(ArgumentError("order must be specified"))
end


"""
ClassicSolverInit(; alg=OrdinaryDiffEq.Tsit5(), init_on_ddu=false)
Expand Down Expand Up @@ -94,7 +92,7 @@ struct ClassicSolverInit{ALG} <: InitializationScheme
alg::ALG
init_on_ddu::Bool
end
ClassicSolverInit(alg::DiffEqBase.AbstractODEAlgorithm=AutoVern7(Rodas4()))=
ClassicSolverInit(alg::DiffEqBase.AbstractODEAlgorithm=AutoVern7(Rodas4())) =
ClassicSolverInit(; alg, init_on_ddu=false)
ClassicSolverInit(; alg=AutoVern7(Rodas4()), init_on_ddu=false) =
ClassicSolverInit(alg, init_on_ddu)
Expand Down

0 comments on commit 8892572

Please sign in to comment.