Skip to content

Commit 44a4f29

Browse files
Merge pull request #30 from pnnl/develop
Develop
2 parents 2bedaa8 + fe14a20 commit 44a4f29

File tree

8 files changed

+6
-6
lines changed

8 files changed

+6
-6
lines changed
-18 Bytes
Binary file not shown.
-6 Bytes
Binary file not shown.

docs/build/_modules/algorithms/homology_mod2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,7 @@ <h1>Source code for algorithms.homology_mod2</h1><div class="highlight"><pre>
560560
<span class="sd"> </span>
561561
<span class="sd"> Returns</span>
562562
<span class="sd"> -------</span>
563-
<span class="sd"> L, R, S, Linv, Rinv : np.arrays</span>
563+
<span class="sd"> L, R, S, Linv : np.arrays</span>
564564
<span class="sd"> LMR = S is the Smith Normal Form of the matrix M. </span>
565565
<span class="sd"> </span>
566566
<span class="sd"> Note</span>

docs/build/algorithms/algorithms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ <h4>Homology Mod2<a class="headerlink" href="#homology-mod2" title="Permalink to
510510
</ul>
511511
</dd>
512512
<dt class="field-even">Returns</dt>
513-
<dd class="field-even"><p><strong>L, R, S, Linv, Rinv</strong> – LMR = S is the Smith Normal Form of the matrix M.</p>
513+
<dd class="field-even"><p><strong>L, R, S, Linv</strong> – LMR = S is the Smith Normal Form of the matrix M.</p>
514514
</dd>
515515
<dt class="field-odd">Return type</dt>
516516
<dd class="field-odd"><p>np.arrays</p>

docs/build/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
import os
2020
import shlex
2121

22-
__version__ = "0.3.2"
22+
__version__ = "0.3.3"
2323

2424

2525
# If extensions (or modules to document with autodoc) are in another directory,

hypernetx/algorithms/homology_mod2.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def smith_normal_form_mod2(M,track=False):
399399
400400
Returns
401401
-------
402-
L, R, S, Linv, Rinv : np.arrays
402+
L, R, S, Linv : np.arrays
403403
LMR = S is the Smith Normal Form of the matrix M.
404404
405405
Note
@@ -434,7 +434,6 @@ def smith_normal_form_mod2(M,track=False):
434434
print(R,'R\n')
435435

436436
for s in range(min(dimL,dimR)):
437-
print('.'),
438437
if track:
439438
print(f'\ns={s}\n')
440439
## Find index pair (rdx,cdx) with value 1 in submatrix M[s:,s:]

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
setup(
1212
name='hypernetx',
1313
packages=['hypernetx',
14+
'hypernetx.algorithms',
1415
'hypernetx.classes',
1516
'hypernetx.drawing',
1617
'hypernetx.reports'],

0 commit comments

Comments
 (0)