Skip to content

Commit

Permalink
Better workaround for IterativeEigensolvers rename
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan committed Dec 21, 2017
1 parent 206c709 commit 25515c1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Compat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -775,8 +775,10 @@ if VERSION < v"0.7.0-DEV.2655"
export eigs, svds
end
elseif VERSION < v"0.7.0-DEV.3019"
import IterativeEigenSolvers
const IterativeEigensolvers = IterativeEigenSolvers
@eval module IterativeEigensolvers
using IterativeEigenSolvers: eigs, svds
export eigs, svds
end
else
import IterativeEigensolvers
end
Expand Down

0 comments on commit 25515c1

Please sign in to comment.