Skip to content

Commit eef09c9

Browse files
authored
Merge pull request #589 from JuliaHomotopyContinuation/fix-arblib-dependency
This PR attempts to fix a dependency bug with Arblib
2 parents fe0f0d1 + 0bbd664 commit eef09c9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ SymEngine_jll = "3428059b-622b-5399-b16f-d347a77089a4"
2929
TreeViews = "a2a6695c-b41b-5b7d-aed9-dbfdeacea5d7"
3030

3131
[compat]
32-
Arblib = "0.7,0.8"
32+
Arblib = "1.2"
3333
DynamicPolynomials = "0.5, 0.6"
3434
ElasticArrays = "1"
3535
FiniteDiff = "2.15"

src/certification.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,8 @@ function CertificationCache(F::AbstractSystem)
621621
)
622622
end
623623

624-
Base.setprecision(M::AcbRefMatrix, p::Int) = AcbRefMatrix(M.acb_mat, p)
624+
Base.setprecision(M::AcbRefMatrix, p::Int) =
625+
AcbRefMatrix(M.acb_mat; shallow = true, prec = p)
625626
function set_arb_precision!(cache::CertificationCache, p::Int)
626627
cache.arb_prec == p && return cache
627628
cache.arb_prec = p

0 commit comments

Comments
 (0)