Skip to content

Commit

Permalink
init of elemetaryarrays
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotr Gawron committed Aug 19, 2019
1 parent dcb33a1 commit 0dee7dc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions elementaryarrays/src/ElementaryArrays.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
module ElementaryArrays
using LinearAlgebra
import Base: *, +, -, size, getindex, setindex!

# Array interface https://docs.julialang.org/en/v1/manual/interfaces/index.html#man-interface-array-1
# Linear Algebra https://docs.julialang.org/en/v1/stdlib/LinearAlgebra/index.html
# Permutation groups http://nemocas.github.io/Nemo.jl/v0.6.3/perm/
struct ElementaryArray{T, N} <: AbstractArray{T, N}
idxs
dims
end
end

0 comments on commit 0dee7dc

Please sign in to comment.