Skip to content

Commit 546b1ab

Browse files
committed
remove extension again
1 parent 48afea0 commit 546b1ab

3 files changed

Lines changed: 1 addition & 49 deletions

File tree

lib/RecursiveArrayToolsRaggedArrays/Project.toml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ RecursiveArrayTools = "731186ca-8d62-57ce-b412-fbd966d074cd"
1010
StaticArraysCore = "1e83bf80-4336-4d27-bf5d-d5a4f845583c"
1111
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
1212

13-
[weakdeps]
14-
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
15-
16-
[extensions]
17-
RecursiveArrayToolsRaggedArraysDiffEqBaseExt = "DiffEqBase"
18-
1913
[compat]
2014
Adapt = "4"
2115
ArrayInterface = "7"
@@ -26,10 +20,9 @@ SymbolicIndexingInterface = "0.3.35"
2620
julia = "1.10"
2721

2822
[extras]
29-
DiffEqBase = "2b5f629d-d688-5b77-993f-72d75c75574e"
3023
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
3124
SymbolicIndexingInterface = "2efcf032-c050-4f8e-a9bb-153293bab1f5"
3225
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3326

3427
[targets]
35-
test = ["DiffEqBase", "SparseArrays", "SymbolicIndexingInterface", "Test"]
28+
test = ["SparseArrays", "SymbolicIndexingInterface", "Test"]

lib/RecursiveArrayToolsRaggedArrays/ext/RecursiveArrayToolsRaggedArraysDiffEqBaseExt.jl

Lines changed: 0 additions & 27 deletions
This file was deleted.

lib/RecursiveArrayToolsRaggedArrays/test/runtests.jl

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ using RecursiveArrayTools, RecursiveArrayToolsRaggedArrays
22
using RecursiveArrayToolsRaggedArrays: RaggedEnd, RaggedRange
33
using SymbolicIndexingInterface
44
using SymbolicIndexingInterface: SymbolCache
5-
import DiffEqBase: ODE_DEFAULT_NORM, UNITLESS_ABS2, recursive_length
65
using Test
76

87
@testset "RecursiveArrayToolsRaggedArrays" begin
@@ -1028,17 +1027,4 @@ using Test
10281027
@test mapreduce(identity, +, u) == 15.0 # (2+3)*3
10291028
end
10301029

1031-
@testset "ODE_DEFAULT_NORM: RMS-normalised for RaggedVectorOfArray" begin
1032-
# Loading OrdinaryDiffEqTsit5 (which depends on DiffEqBase) triggers the weakdep
1033-
# extension, giving the correct RMS-normalised norm instead of the unnormalised
1034-
# Euclidean norm used by the generic fallback.
1035-
r = RaggedVectorOfArray([ones(3), ones(3)]) # 6 ones
1036-
@test UNITLESS_ABS2(r) 6.0
1037-
@test recursive_length(r) == 6
1038-
# RMS norm of 6 ones = sqrt(6/6) = 1
1039-
@test ODE_DEFAULT_NORM(r, 0.0) 1.0
1040-
# Unnormalised Euclidean norm would be sqrt(6) ≈ 2.449 — make sure we don't get that
1041-
@test ODE_DEFAULT_NORM(r, 0.0) < 2.0
1042-
end
1043-
10441030
end

0 commit comments

Comments
 (0)