Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jwcalder committed Jun 4, 2024
1 parent 2ab6351 commit e8e0303
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/utils.html
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ <h1 id="utilities">Utilities</h1>
x = x0

r = b - A@x
p = r
p = r.copy()
rsold = np.sum(r**2,axis=0)

err = 1
Expand Down
2 changes: 1 addition & 1 deletion graphlearning/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def conjgrad(A, b, x0=None, max_iter=1e5, tol=1e-10):
x = x0

r = b - A@x
p = r
p = r.copy()
rsold = np.sum(r**2,axis=0)

err = 1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ packages = ['graphlearning']

[project]
name = "graphlearning"
version = "1.5.8"
version = "1.5.9"
authors = [
{ name="Jeff Calder", email="[email protected]" },
]
Expand Down

0 comments on commit e8e0303

Please sign in to comment.