Skip to content

Commit

Permalink
export two symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbaran committed Oct 25, 2024
1 parent a275c1b commit 5cd41ac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.6]unreleased
## [0.10.6]2024-10-25

### Added

Expand Down
2 changes: 2 additions & 0 deletions src/Manifolds.jl
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,7 @@ export AbstractGroupAction,
ActionDirection,
AdditionOperation,
CircleGroup,
ComplexPlanarRotation,
GeneralLinear,
GroupManifold,
GroupOperationAction,
Expand All @@ -1001,6 +1002,7 @@ export AbstractGroupAction,
PowerGroup,
ProductGroup,
ProductOperation,
QuaternionRotation,
RealCircleGroup,
RightAction,
RightInvariantMetric,
Expand Down
4 changes: 2 additions & 2 deletions test/groups/rotation_action.jl
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ end
@testset "ComplexPlanarRotation" begin
M = Euclidean(2)
G = CircleGroup()
A = Manifolds.ComplexPlanarRotation()
A = ComplexPlanarRotation()

@test group_manifold(A) === M
@test base_group(A) === G
Expand All @@ -204,7 +204,7 @@ end
@testset "QuaternionRotation" begin
M = Euclidean(3)
G = Unitary(1, ℍ)
A = Manifolds.QuaternionRotation()
A = QuaternionRotation()

@test group_manifold(A) === M
@test base_group(A) === G
Expand Down

0 comments on commit 5cd41ac

Please sign in to comment.