Skip to content

Commit

Permalink
Merge pull request #17 from devmotion/heap_deprecations
Browse files Browse the repository at this point in the history
Fix deprecations of binary_minheap and binary_maxheap
  • Loading branch information
ChrisRackauckas authored Jan 10, 2019
2 parents ad4fa3b + 6cf3334 commit 000b7f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion REQUIRE
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ ODEInterface 0.1.3
DiffEqBase 4.29.0
Compat 0.17.0
Reexport
DataStructures
DataStructures 0.15.0
FunctionWrappers
4 changes: 2 additions & 2 deletions src/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ function saveat_disc_handling(saveat,tdir,tspan,tType)
end

if tdir>0
saveat_internal = binary_minheap(saveat_vec)
saveat_internal = BinaryMinHeap(saveat_vec)
else
saveat_internal = binary_maxheap(saveat_vec)
saveat_internal = BinaryMaxHeap(saveat_vec)
end

saveat_internal
Expand Down

0 comments on commit 000b7f0

Please sign in to comment.