Skip to content

Commit 8a9e916

Browse files
committed
revert SArray
1 parent 997c601 commit 8a9e916

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

lib/SimpleImplicitDiscreteSolve/Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
88
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
99
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
1010
SimpleNonlinearSolve = "727e6d20-b764-4bd8-a329-72de5adea6c7"
11-
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1211

1312
[compat]
1413
DiffEqBase = "6.164.1"
1514
OrdinaryDiffEqSDIRK = "1.2.0"
1615
Reexport = "1.2.2"
1716
SciMLBase = "2.74.1"
1817
SimpleNonlinearSolve = "2.1.0"
19-
StaticArrays = "1.9.13"
2018
Test = "1.10"
2119

2220
[extras]

lib/SimpleImplicitDiscreteSolve/src/SimpleImplicitDiscreteSolve.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ module SimpleImplicitDiscreteSolve
33
using SciMLBase
44
using SimpleNonlinearSolve
55
using Reexport
6-
using StaticArrays
76
@reexport using DiffEqBase
87

98
"""
@@ -52,8 +51,7 @@ function DiffEqBase.solve(prob::ImplicitDiscreteProblem, alg::SimpleIDSolve;
5251

5352
l = save_everystep ? length(ts) - 1 : 1
5453
save_start && (l = l + 1)
55-
u0type = typeof(u0)
56-
us = u0type <: StaticArray ? MVector{l, u0type}(undef) : Vector{u0type}(undef, l)
54+
us = Vector{typeof(u0)}(undef, l)
5755

5856
if save_start
5957
us[1] = u0

0 commit comments

Comments
 (0)