We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47fa3f4 commit 9c37f94Copy full SHA for 9c37f94
src/topologies/halfedge.jl
@@ -237,7 +237,7 @@ function adjsort(elems::AbstractVector{<:Connectivity})
237
found = false
238
vinds = last(adjs)
239
for i in vinds
240
- not_i = (filter(!=(i), vinds)...,)
+ not_i = filter(!=(i), vinds)
241
for j in reverse(eachindex(list))
242
# equivalent to `length(vinds ∩ list[j]) > 1` but more efficient (no allocs(?))
243
any(==(i), list[j]) || continue
0 commit comments