Skip to content

Commit 613e9aa

Browse files
committed
p can be Any
1 parent fb0626f commit 613e9aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/LinearSolveForwardDiffExt.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ const DualLinearProblem = LinearProblem{
1111
<:Union{Number, <:AbstractArray, Nothing}, iip,
1212
<:Union{<:Dual{T, V, P}, <:AbstractArray{<:Dual{T, V, P}}},
1313
<:Union{<:Dual{T, V, P}, <:AbstractArray{<:Dual{T, V, P}}},
14-
<:Union{Number, <:AbstractArray, SciMLBase.NullParameters}
14+
<:Any
1515
} where {iip, T, V, P}
1616

1717
const DualALinearProblem = LinearProblem{
1818
<:Union{Number, <:AbstractArray, Nothing},
1919
iip,
2020
<:Union{<:Dual{T, V, P}, <:AbstractArray{<:Dual{T, V, P}}},
2121
<:Union{Number, <:AbstractArray},
22-
<:Union{Number, <:AbstractArray, SciMLBase.NullParameters}
22+
<:Any
2323
} where {iip, T, V, P}
2424

2525
const DualBLinearProblem = LinearProblem{
2626
<:Union{Number, <:AbstractArray, Nothing},
2727
iip,
2828
<:Union{Number, <:AbstractArray},
2929
<:Union{<:Dual{T, V, P}, <:AbstractArray{<:Dual{T, V, P}}},
30-
<:Union{Number, <:AbstractArray, SciMLBase.NullParameters}
30+
<:Any
3131
} where {iip, T, V, P}
3232

3333
const DualAbstractLinearProblem = Union{

0 commit comments

Comments
 (0)