Skip to content

Commit

Permalink
Use reverse instead of flipdim
Browse files Browse the repository at this point in the history
flipdim was deprecated: JuliaLang/julia#26369
  • Loading branch information
cmcaine committed Mar 26, 2022
1 parent 7b6a1e6 commit 5355068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Nauty.jl
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ function label_to_adj(label)
temp = BitArray(undef,WORDSIZE,size(label,1))
temp.chunks = label
temparr = Array{Int64,2}(temp[end-size(label,1)+1:end,:])
flipdim(temparr',2)
reverse(temparr', dims=2)
end

"""
Expand Down

0 comments on commit 5355068

Please sign in to comment.