Skip to content

Commit

Permalink
another bug corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanslapnicar committed Jun 3, 2015
1 parent eb739f0 commit 043f114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/arrowhead4.jl
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ function dpr1eigall(A::SymDPR1, tols::Vector{Float64})
# Deflation
Dgx=D[gx]; zgx=z[gx]
lg0=length(g0)
R=Array(LinAlg.Givens{Float64},lg0)
R=Array(Givens{Float64},lg0)
for l=lg0:-1:1
R[l]=givens(z[g0[l]],z[g0[l]+1],zx[g0[l]],zx[g0[l]+1],n0)
z[g0[l]]=R[l].r; z[g0[l]+1]=0.0
Expand Down

4 comments on commit 043f114

@hayd
Copy link

@hayd hayd commented on 043f114 Sep 25, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you push this release to METADATA? Thanks!

@ivanslapnicar
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi!
I just did a revision of the packahe. The newest version has buils problems on julia nightly. Can you help?
Also, how do I push the newest version to METADATA?
Thanks! Ivan

@hayd
Copy link

@hayd hayd commented on 043f114 Sep 29, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think you checkout the tagged commit then Pkg publish, see http://julia.readthedocs.org/en/latest/manual/packages/#tagging-and-publishing-your-package.

Will have a look at the build issue!

@hayd
Copy link

@hayd hayd commented on 043f114 Sep 29, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There's a few deprecation warnings. https://travis-ci.org/ivanslapnicar/Arrowhead.jl/jobs/82740333 You should add Compat.jl to your REQUIRE, using Compat and fix them (prepending @compat to each updated call).

The main failure is JuliaMath/DoubleDouble.jl#6.

Please sign in to comment.