File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ Computes given integral with the limits of integration being 0 and 1 using Rando
120120
121121### Usage:
122122``` Python
123- from src.algorithms.support_algorithms .rqmc import RQMC
123+ from src.procedures.support .rqmc import RQMC
124124rqmc = RQMC(lambda x : x** 3 - x** 2 + 1 , error_tolerance = 1e-5 )
125125```
126126So ` rqmc()[0] ` is estimated integral value and ` rqmc()[1] ` is current error tolerance.
Original file line number Diff line number Diff line change 55import scipy
66from numba import njit
77
8- from src .algorithms . support_algorithms .integrator import IntegrationResult
8+ from src .procedures . support .integrator import IntegrationResult
99
1010BITS = 30
1111"""Number of bits in XOR. Should be less than 64"""
You can’t perform that action at this time.
0 commit comments