You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function_collect_net!(ret::Vector{<:CrystalNet{D}}, encountered, idx, c, clustering) where D
771
-
vmap, graph =trim_topology(c.pge.g)
773
+
vmap, graph =if c.options.trim
774
+
trim_topology(c.pge.g)
775
+
else
776
+
collect(1:length(c.types)), c.pge.g
777
+
end
772
778
types = c.types[vmap]
773
779
idx >1&& c.options.track_mapping isa Vector{Int} && c.options.keep_single_track &&throw(ArgumentError("Cannot keep a single mapping track for multiple sub-nets. Please use keep_single_track=true only on single components with a single clustering."))
0 commit comments