Skip to content

Commit

Permalink
Handle #124
Browse files Browse the repository at this point in the history
  • Loading branch information
henry2004y committed Dec 16, 2022
1 parent b756e11 commit f012ffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Vlasiator"
uuid = "7d2ba682-ad6e-4e20-80d9-3f2d4a610bb4"
authors = ["Hongyang Zhou <hyzhou@umich.edu>"]
version = "0.9.33"
version = "0.9.34"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
4 changes: 2 additions & 2 deletions src/vlsv/vlsvreader.jl
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,8 @@ function load(file::AbstractString)
nodeblockid)

cellid = getcellid(fid, n.var)

cellindex = sortperm(cellid)
#TODO: check the new sorting algorithms in Julia 1.9!
cellindex = sortperm(cellid, alg=MergeSort)

ncells, block_size, coordmin, coordmax = readmesh(fid, footer)

Expand Down

0 comments on commit f012ffe

Please sign in to comment.