Skip to content

Commit

Permalink
Fix an export.
Browse files Browse the repository at this point in the history
  • Loading branch information
kellertuer committed Oct 30, 2024
1 parent ff49d53 commit 81fd436
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/LieGroups.jl
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ export TranslationGroup, GeneralLinearGroup
export adjoint, adjoint!, apply, apply!
export base_lie_group, base_manifold
export compose, compose!
export diff_apply,
export det,
diff_apply,
diff_apply!,
diff_group_apply,
diff_group_apply!,
Expand Down
3 changes: 3 additions & 0 deletions test/operations/test_multiplication_operation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ using LieGroups, Test
@test inv(e) === e
@test det(e)
# Zero array
g2 = fill(2.0, ())

# Array
g3 = [2.0 0.0; 0.0 2.0]
end
end

0 comments on commit 81fd436

Please sign in to comment.