Skip to content

Commit

Permalink
Merge pull request #589 from JuliaHomotopyContinuation/fix-arblib-dep…
Browse files Browse the repository at this point in the history
…endency

This PR attempts to fix a dependency bug with Arblib
  • Loading branch information
PBrdng authored Aug 28, 2024
2 parents fe0f0d1 + 0bbd664 commit eef09c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ SymEngine_jll = "3428059b-622b-5399-b16f-d347a77089a4"
TreeViews = "a2a6695c-b41b-5b7d-aed9-dbfdeacea5d7"

[compat]
Arblib = "0.7,0.8"
Arblib = "1.2"
DynamicPolynomials = "0.5, 0.6"
ElasticArrays = "1"
FiniteDiff = "2.15"
Expand Down
3 changes: 2 additions & 1 deletion src/certification.jl
Original file line number Diff line number Diff line change
Expand Up @@ -621,7 +621,8 @@ function CertificationCache(F::AbstractSystem)
)
end

Base.setprecision(M::AcbRefMatrix, p::Int) = AcbRefMatrix(M.acb_mat, p)
Base.setprecision(M::AcbRefMatrix, p::Int) =
AcbRefMatrix(M.acb_mat; shallow = true, prec = p)
function set_arb_precision!(cache::CertificationCache, p::Int)
cache.arb_prec == p && return cache
cache.arb_prec = p
Expand Down

0 comments on commit eef09c9

Please sign in to comment.