Skip to content

Commit 0b93c51

Browse files
committed
fix some comments in multi-dim VoA
1 parent eacbe3f commit 0b93c51

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/vector_of_array.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,20 @@ the `VectorOfArray` into a matrix/tensor. Also, `vecarr_to_vectors(VA::AbstractV
2828
returns a vector of the series for each component, that is, `A[i,:]` for each `i`.
2929
A plot recipe is provided, which plots the `A[i,:]` series.
3030
31+
<<<<<<< Updated upstream
3132
There is also support for `VectorOfArray` with constructed from multi-dimensional arrays
3233
34+
=======
35+
There is also support for `VectorOfArray` constructed from multi-dimensional arrays
36+
>>>>>>> Stashed changes
3337
```julia
3438
VectorOfArray(u::AbstractArray{AT}) where {T, N, AT <: AbstractArray{T, N}}
3539
```
3640
3741
where `IndexStyle(typeof(u)) isa IndexLinear`.
3842
"""
3943
mutable struct VectorOfArray{T, N, A} <: AbstractVectorOfArray{T, N, A}
40-
u::A # A <: AbstractVector{<: AbstractArray{T, N - 1}}
44+
u::A # A <: AbstractArray{<: AbstractArray{T, N - 1}}
4145
end
4246
# VectorOfArray with an added series for time
4347

0 commit comments

Comments
 (0)