Skip to content

Commit db3d861

Browse files
committed
clean up
1 parent cf0eccd commit db3d861

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

ext/LinearSolveForwardDiffExt.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,6 @@ function SciMLBase.init(
239239
assumptions = nothing,
240240
sensealg = LinearSolveAdjoint(),
241241
kwargs...)
242-
@info "here!"
243242
(; A, b, u0, p) = prob
244243
new_A = nodual_value(A)
245244
new_b = nodual_value(b)

src/default.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,10 +362,7 @@ end
362362
DefaultAlgorithmChoice.AppleAccelerateLUFactorization,
363363
DefaultAlgorithmChoice.GenericLUFactorization))
364364
newex = quote
365-
@info $(algchoice_to_alg(alg))
366-
alg = $(algchoice_to_alg(alg))
367-
#Main.@infiltrate
368-
sol = SciMLBase.solve!(cache, alg, args...; kwargs...)
365+
sol = SciMLBase.solve!(cache, $(algchoice_to_alg(alg)), args...; kwargs...)
369366
if sol.retcode === ReturnCode.Failure && alg.safetyfallback
370367
## TODO: Add verbosity logging here about using the fallback
371368
sol = SciMLBase.solve!(cache, QRFactorization(ColumnNorm()), args...; kwargs...)

0 commit comments

Comments
 (0)