Skip to content

Commit f01244c

Browse files
Merge pull request #263 from SciML/ChrisRackauckas-patch-2
Bump minor and test master
2 parents 86b2911 + c58f14c commit f01244c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "Integrals"
22
uuid = "de52edbc-65ea-441a-8357-d3a637375a31"
33
authors = ["Chris Rackauckas <[email protected]>"]
4-
version = "4.5.0"
4+
version = "4.6.0"
55

66
[deps]
77
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2"

ext/IntegralsMCIntegrationExt.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ _oftype(::Number, x) = only(x)
66
_oftype(y, x) = oftype(y, x)
77

88
function Integrals.__solvebp_call(prob::IntegralProblem, alg::VEGASMC, sensealg, domain, p;
9-
reltol = nothing, abstol = nothing, maxiters = 10)
9+
reltol = nothing, abstol = nothing, maxiters = 1000)
1010
lb, ub = domain
1111
mid = (lb + ub) / 2
1212
tmp = vec(collect(mid))

test/interface_tests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ using Test
44

55
max_dim_test = 2
66
max_nout_test = 2
7-
reltol = 1e-3
8-
abstol = 1e-3
7+
reltol = 1e-5
8+
abstol = 1e-5
99

1010
alg_req = Dict(
1111
QuadGKJL() => (nout = Inf, allows_batch = true, min_dim = 1, max_dim = 1,

0 commit comments

Comments
 (0)