Skip to content

Commit cb90a63

Browse files
committed
fixed
1 parent d4e7c06 commit cb90a63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
124124
rqmc = RQMC(lambda x: x**3 - x**2 + 1, error_tolerance=1e-5)
125125
```
126126
So `rqmc()[0]` is estimated integral value and `rqmc()[1]` is current error tolerance.

src/procedures/support/rqmc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import scipy
66
from numba import njit
77

8-
from src.algorithms.support_algorithms.integrator import IntegrationResult
8+
from src.procedures.support.integrator import IntegrationResult
99

1010
BITS = 30
1111
"""Number of bits in XOR. Should be less than 64"""

0 commit comments

Comments
 (0)