We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddce985 commit b8d9de5Copy full SHA for b8d9de5
test/labelledarrays.jl
@@ -19,7 +19,7 @@ ff = ODEFunction(de, [x, y, z], [σ, ρ, β], jac = true)
19
a = @SVector [1.0, 2.0, 3.0]
20
b = SLVector(x = 1.0, y = 2.0, z = 3.0)
21
c = [1.0, 2.0, 3.0]
22
-p = SLVector(σ = 10.0, ρ = 26.0, β = 8 / 3)
+p = (SLVector(σ = 10.0, ρ = 26.0, β = 8 / 3),)
23
@test ff(a, p, 0.0) isa SVector
24
@test typeof(ff(b, p, 0.0)) <: SLArray
25
@test ff(c, p, 0.0) isa Vector
0 commit comments