Skip to content

Commit

Permalink
Fixes for new dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
f0uriest committed Dec 10, 2024
1 parent a9cd02a commit 5d5cbcc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ def linkcode_resolve(domain, info):
# 'canonical_url': '',
# 'analytics_id': 'UA-XXXXXXX-1', # Provided by Google in your dashboard
"logo_only": True,
"display_version": True,
"prev_next_buttons_location": "both",
"style_external_links": False,
"style_nav_header_background": "#3c4142",
Expand Down
3 changes: 1 addition & 2 deletions quadax/romberg.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ def sloop(i, s):
return s

result = result.at[n, 0].set(
0.5 * result[n - 1, 0]
+ h * jax.lax.fori_loop(1, (2**n) // 2 + 1, sloop, s)
0.5 * result[n - 1, 0] + h * jax.lax.fori_loop(1, (2**n) // 2 + 1, sloop, s)
)
neval += (2**n) // 2

Expand Down

0 comments on commit 5d5cbcc

Please sign in to comment.