Skip to content

Commit

Permalink
inverse_translate_diff fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszbaran committed Oct 27, 2023
1 parent f130856 commit 6a941f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/groups/group.jl
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ function inverse_translate_diff(
conv::ActionDirectionAndSide,
)
BG = base_group(G)
return translate_diff(BG, inv(BG, p), q, X, conv)
return translate_diff(BG, inv(BG, p), q, inv_diff(BG, p, X), conv)

Check warning on line 921 in src/groups/group.jl

View check run for this annotation

Codecov / codecov/patch

src/groups/group.jl#L921

Added line #L921 was not covered by tests
end

@trait_function inverse_translate_diff!(
Expand All @@ -939,7 +939,7 @@ function inverse_translate_diff!(
conv::ActionDirectionAndSide,
)
BG = base_group(G)
return translate_diff!(BG, Y, inv(BG, p), q, X, conv)
return translate_diff!(BG, Y, inv(BG, p), q, inv_diff(BG, p, X), conv)

Check warning on line 942 in src/groups/group.jl

View check run for this annotation

Codecov / codecov/patch

src/groups/group.jl#L942

Added line #L942 was not covered by tests
end

@doc raw"""
Expand Down

0 comments on commit 6a941f8

Please sign in to comment.