Skip to content

Commit 7c6728c

Browse files
committed
while t<=tmax for GDN NUS
1 parent 3792e18 commit 7c6728c

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
api.tex
2+
.vscode/settings.json
23

34
qmctoolscl/c_funcs.py
45
qmctoolscl/wrapped_funcs.py

docs/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1487,7 +1487,7 @@ array([[[[0, 0, 1, 0, 0, 1, 0, 0],
14871487
[1, 1, 1, 2, 0, 0, 0, 0],
14881488
[4, 4, 1, 4, 1, 2, 3, 0]],
14891489

1490-
[[1, 0, 1, 0, 0, 0, 0, 0],
1490+
[[1, 0, 1, 0, 1, 0, 1, 1],
14911491
[0, 1, 2, 0, 2, 1, 0, 1],
14921492
[2, 1, 0, 0, 1, 2, 3, 0]]],
14931493

@@ -1524,7 +1524,7 @@ array([[[[0, 0, 1, 0, 0, 1, 0, 0],
15241524
[1, 1, 1, 1, 0, 1, 0, 0],
15251525
[0, 2, 1, 4, 3, 3, 2, 0]],
15261526

1527-
[[1, 0, 1, 0, 0, 0, 0, 0],
1527+
[[1, 0, 1, 0, 1, 0, 0, 1],
15281528
[2, 2, 2, 2, 2, 2, 2, 1],
15291529
[4, 3, 0, 0, 4, 2, 0, 4]]]], dtype=uint64)
15301530
>>> xr = np.empty((r,n,d),dtype=np.float64)
@@ -1538,7 +1538,7 @@ array([[[0.140625 , 0.99283646, 0.7772288 ],
15381538
[0.55859375, 0.07575065, 0.69515776],
15391539
[0.25 , 0.72092669, 0.27969536],
15401540
[0.98046875, 0.50617284, 0.9748864 ],
1541-
[0.625 , 0.1949398 , 0.4404864 ]],
1541+
[0.66796875, 0.1949398 , 0.4404864 ]],
15421542

15431543
[[0.046875 , 0.16156074, 0.560384 ],
15441544
[0.66015625, 0.39521414, 0.2505728 ],
@@ -1548,7 +1548,7 @@ array([[[0.140625 , 0.99283646, 0.7772288 ],
15481548
[0.59375 , 0.80445054, 0.53750016],
15491549
[0.41796875, 0.02240512, 0.35194624],
15501550
[0.953125 , 0.4951989 , 0.0955776 ],
1551-
[0.625 , 0.99969517, 0.92141824]]])
1551+
[0.66015625, 0.99969517, 0.92141824]]])
15521552
```
15531553

15541554
### digital interlacing

qmctoolscl/rand_funcs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ def gdn_nested_uniform_scramble(
319319
node = root_nodes[l,j]
320320
t = 0
321321
perm = np.zeros(tmax_new,dtype=np.uint64)
322-
while t<tmax:
322+
while t<=tmax:
323323
_xdig = np.zeros(np.uint64(tmax_new-t),dtype=np.uint64)
324324
_xdig[:np.uint64(tmax-t)] = xdig[l_x,i,j,t:]
325325
dig = _xdig[0]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
setuptools.setup(
2525
name = "qmctoolscl",
26-
version = "1.1.5",
26+
version = "1.1.6",
2727
author="Aleksei G Sorokin",
2828
author_email="asorokin@hawk.iit.edu",
2929
install_requires = [

0 commit comments

Comments
 (0)