Skip to content

Commit

Permalink
Nested power representation with replacement (#73)
Browse files Browse the repository at this point in the history
* nested power representation with replacement

* formatting

* fixing Julia nightly

* trying to make coverage happy

* version bumped; new power representation exported
  • Loading branch information
mateuszbaran authored May 26, 2021
1 parent 194e27e commit 8e9bd0c
Show file tree
Hide file tree
Showing 8 changed files with 398 additions and 184 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ManifoldsBase"
uuid = "3362f125-f0bb-47a3-aa74-596ffd7ef2fb"
authors = ["Seth Axen <[email protected]>", "Mateusz Baran <[email protected]>", "Ronny Bergmann <[email protected]>", "Antoine Levitt <[email protected]>"]
version = "0.11.3"
version = "0.11.4"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 2 additions & 0 deletions src/DefaultManifold.jl
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,6 @@ function vector_transport_to!(M::DefaultManifold, Y, p, X, q, ::ProjectionTransp
return project!(M, Y, q, X)
end

zero_vector(::DefaultManifold, p) = zero(p)

zero_vector!(::DefaultManifold, Y, p) = fill!(Y, 0)
3 changes: 2 additions & 1 deletion src/ManifoldsBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,8 @@ export AbstractEmbeddingType,
TransparentIsometricEmbedding, DefaultIsometricEmbeddingType, DefaultEmbeddingType
export AbstractEmbeddedManifold, EmbeddedManifold, TransparentIsometricEmbedding
export AbstractPowerManifold, PowerManifold
export AbstractPowerRepresentation, NestedPowerRepresentation
export AbstractPowerRepresentation,
NestedPowerRepresentation, NestedReplacingPowerRepresentation

export OutOfInjectivityRadiusError

Expand Down
Loading

2 comments on commit 8e9bd0c

@mateuszbaran
Copy link
Member Author

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/37583

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.11.4 -m "<description of version>" 8e9bd0cea20da964cca7c333a03d274ce0de2d10
git push origin v0.11.4

Please sign in to comment.