Skip to content

Commit b85d680

Browse files
Merge pull request #129 from SciML/undef_init
add an undef initializer for LArray
2 parents a07f6c0 + 1f00d5f commit b85d680

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "LabelledArrays"
22
uuid = "2ee39098-c373-598a-b85f-a56591580800"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "1.12.0"
4+
version = "1.12.1"
55

66
[deps]
77
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"

src/LabelledArrays.jl

+5-1
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,15 @@ end
5959
Base.NamedTuple(x::Union{LArray, SLArray}) = NamedTuple{symnames(typeof(x))}(x.__x)
6060
@inline Base.reshape(a::SLArray, s::Size) = StaticArrays.similar_type(a, s)(Tuple(a))
6161

62-
function ArrayInterfaceCore.ismutable(::Type{<:LArray{T, N, Syms}}) where {T, N, Syms}
62+
function ArrayInterfaceCore.ismutable(::Type{<:LArray{T, N, D, Syms}}) where {T, N, D, Syms}
6363
ArrayInterfaceCore.ismutable(T)
6464
end
6565
ArrayInterfaceCore.can_setindex(::Type{<:SLArray}) = false
6666

67+
function ArrayInterfaceCore.undefmatrix(x::LArray{T, N, D, Syms}) where {T, N, D, Syms}
68+
similar(x.__x, length(Syms), length(Syms))
69+
end
70+
6771
function PreallocationTools.get_tmp(dc::PreallocationTools.DiffCache,
6872
u::LArray{T, N, D, Syms}) where {T <: ForwardDiff.Dual,
6973
N, D, Syms}

src/larray.jl

+9-4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ struct LArray{T, N, D <: AbstractArray{T, N}, Syms} <: DenseArray{T, N}
44
LArray{T, N, D, Syms}(__x) where {T, N, D, Syms} = new{T, N, D, Syms}(__x)
55
end
66

7+
function LArray{T, N, D, Syms}(::UndefInitializer, n::Int64) where {T, N, D, Syms}
8+
@assert length(Syms) == n
9+
LArray{T, N, D, Syms}(similar(D, n))
10+
end
11+
712
#####################################
813
# NamedTuple compatibility
914
#####################################
@@ -199,8 +204,8 @@ A.a == 1
199204
```
200205
201206
Users can also generate a labelled array with undefined values by instead giving
202-
the dimensions. This approach is useful if the user intends to pre-allocate an
203-
array for some later input.
207+
the dimensions. This approach is useful if the user intends to pre-allocate an
208+
array for some later input.
204209
205210
```julia
206211
A = @LArray Float64 (2,2) (:a,:b,:c,:d)
@@ -226,7 +231,7 @@ julia> z.a
226231
4
227232
```
228233
229-
The labels of LArray and SLArray can be accessed
234+
The labels of LArray and SLArray can be accessed
230235
by function `symbols`, which returns a tuple of symbols.
231236
"""
232237
macro LArray(vals, syms)
@@ -260,7 +265,7 @@ A = @LVector Float64 (:a,:b,:c,:d)
260265
A .= rand(4)
261266
```
262267
263-
On the other hand, users can also initialize the vector and set its values at the
268+
On the other hand, users can also initialize the vector and set its values at the
264269
same time:
265270
266271
```julia

test/larrays.jl

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ using LabelledArrays, Test, InteractiveUtils
1414
mat = rand(4, 3)
1515
@test mat * vals mat * [1.0, 2.0, 3.0]
1616
syms = (:a, :b, :c)
17+
@test typeof(typeof(x)(undef, 3)) == typeof(x)
1718

1819
for (i, s) in enumerate(syms)
1920
@show i, s

0 commit comments

Comments
 (0)