Skip to content

Commit c10a8bf

Browse files
committed
clean up
1 parent f6db1ee commit c10a8bf

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
@@ -241,7 +241,6 @@ function SciMLBase.init(
241241
assumptions = nothing,
242242
sensealg = LinearSolveAdjoint(),
243243
kwargs...)
244-
@info "here!"
245244
(; A, b, u0, p) = prob
246245
new_A = nodual_value(A)
247246
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)