acroy / Expokit.jl

Julia implementation of EXPOKIT routines
Other
26 stars 11 forks source link

update deprecated function calls for Julia v0.6 #7

Closed mforets closed 7 years ago

mforets commented 7 years ago

use function names suggested by the compiler: slice -> view and scale(b, A) -> b*A.

acroy commented 7 years ago

Thanks! But I think you mean v0.6 because in v0.5 slice is still alive AFAIK. Would you mind to change the PR to using Compat.jl (this basically amounts to import Compat.view and adjusting REQUIRE)?

mforets commented 7 years ago

done! It looks like Travis CI works now.

acroy commented 7 years ago

Great! thanks again!