Skip to content

Commit a0fb551

Browse files
committed
run JuliaFormatter
1 parent 6863685 commit a0fb551

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

src/numerical_irreducible_decomposition.jl

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -905,17 +905,18 @@ function decompose_with_monodromy!(
905905

906906
shift_orbit(orbit) = Set(orbit_indices_mapping[i] for i in orbit)
907907
# 1. shift existing non complete orbits to new mapping
908-
non_complete_orbits = shift_orbit.(
909-
merge_sets(
910-
[
911-
# Remove all orbits that are contained in a complete orbit
912-
filter(non_complete_orbits) do o
913-
all(co -> isdisjoint(co, o), complete_orbits)
914-
end
915-
setdiff(orbits, complete_orbits)
916-
],
917-
),
918-
)
908+
non_complete_orbits =
909+
shift_orbit.(
910+
merge_sets(
911+
[
912+
# Remove all orbits that are contained in a complete orbit
913+
filter(non_complete_orbits) do o
914+
all(co -> isdisjoint(co, o), complete_orbits)
915+
end
916+
setdiff(orbits, complete_orbits)
917+
],
918+
),
919+
)
919920
end
920921
else
921922
for p in P

0 commit comments

Comments
 (0)