Skip to content

Commit

Permalink
Fix bug, too fast to push once more.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jutho authored Feb 18, 2020
1 parent 05703dd commit 955f5ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tensors/abstracttensor.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ space(t::AbstractTensor, i) = space(t)[i]
Base.@pure codomainind(::Type{<:AbstractTensorMap{<:IndexSpace,N₁,N₂}}) where {N₁, N₂} =
ntuple(n->n, StaticLength(N₁))
Base.@pure domainind(::Type{<:AbstractTensorMap{<:IndexSpace,N₁,N₂}}) where {N₁, N₂} =
ntuple(n->n, StaticLength(N₂))
ntuple(n-> N₁+n, StaticLength(N₂))
Base.@pure allind(::Type{<:AbstractTensorMap{<:IndexSpace,N₁,N₂}}) where {N₁, N₂} =
ntuple(n->n, StaticLength(N₁+N₂))

Expand Down

2 comments on commit 955f5ee

@Jutho
Copy link
Owner Author

@Jutho Jutho commented on 955f5ee Feb 19, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/9761

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.2.2 -m "<description of version>" 955f5ee056f1c21b016bb41fdb025adcb4a01835
git push origin v0.2.2

Please sign in to comment.