@@ -295,13 +295,21 @@ function __init__()
295
295
nvec = prob. batch == 0 ? 1 : prob. batch
296
296
297
297
if alg isa CubaVegas
298
- out = Cuba. vegas (f, ndim, prob. nout; rtol = reltol, atol = abstol, nvec = nvec, kwargs... )
298
+ out = Cuba. vegas (f, ndim, prob. nout; rtol = reltol,
299
+ atol = abstol, nvec = nvec,
300
+ maxevals = maxiters, kwargs... )
299
301
elseif alg isa CubaSUAVE
300
- out = Cuba. suave (f, ndim, prob. nout; rtol = reltol, atol = abstol, nvec = nvec, kwargs... )
302
+ out = Cuba. suave (f, ndim, prob. nout; rtol = reltol,
303
+ atol = abstol, nvec = nvec,
304
+ maxevals = maxiters, kwargs... )
301
305
elseif alg isa CubaDivonne
302
- out = Cuba. divonne (f, ndim, prob. nout; rtol = reltol, atol = abstol, nvec = nvec, kwargs... )
306
+ out = Cuba. divonne (f, ndim, prob. nout; rtol = reltol,
307
+ atol = abstol, nvec = nvec,
308
+ maxevals = maxiters, kwargs... )
303
309
elseif alg isa CubaCuhre
304
- out = Cuba. cuhre (f, ndim, prob. nout; rtol = reltol, atol = abstol, nvec = nvec, kwargs... )
310
+ out = Cuba. cuhre (f, ndim, prob. nout; rtol = reltol,
311
+ atol = abstol, nvec = nvec,
312
+ maxevals = maxiters, kwargs... )
305
313
end
306
314
307
315
if prob. nout == 1
0 commit comments