Skip to content

Commit

Permalink
Make QMCpy client start with fewer init samples
Browse files Browse the repository at this point in the history
  • Loading branch information
linusseelinger committed Dec 14, 2024
1 parent 6f1c4c9 commit 148529a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/python/qmcpy-client.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@

integrand = UMBridgeWrapper(gauss_sobol, model, config, parallel=False)

qmc_sobol_algorithm = qp.CubQMCSobolG(integrand, abs_tol=1e-1)
qmc_sobol_algorithm = qp.CubQMCSobolG(integrand, n_init=256, abs_tol=1e-1)
solution,data = qmc_sobol_algorithm.integrate()
print(data)

0 comments on commit 148529a

Please sign in to comment.