Skip to content

Commit 9eccfbe

Browse files
Merge pull request #338 from vpuri3/diffeqidentity
rm diffeqidentity
2 parents 05c8f9e + 3f3896b commit 9eccfbe

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/LinearSolve.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ _isidentity_struct(A) = false
5050
_isidentity_struct::Number) = isone(λ)
5151
_isidentity_struct(A::UniformScaling) = isone(A.λ)
5252
_isidentity_struct(::SciMLOperators.IdentityOperator) = true
53-
_isidentity_struct(::SciMLBase.DiffEqIdentity) = true
5453

5554
# Code
5655

test/traits.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ N = 4
88
@test _isidentity_struct(I)
99
@test _isidentity_struct(1.0 * I)
1010
@test _isidentity_struct(SciMLBase.IdentityOperator(N))
11-
@test _isidentity_struct(SciMLBase.DiffEqIdentity(rand(4)))
1211
@test !_isidentity_struct(2.0 * I)
1312
@test !_isidentity_struct(rand(N, N))
1413
@test !_isidentity_struct(Matrix(I, N, N))

0 commit comments

Comments
 (0)