Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/.lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ exclude = [
"https://docs.ray.io/.*",
"https://awslabs.github.io/palace/.*",
# PyPI file downloads in uv.lock return transient 503s
"https://files.pythonhosted.org/.*"
"https://files.pythonhosted.org/.*",
# refractiveindex.info returns 404 transiently
"https://refractiveindex.info/.*"
]
# Exclude paths that contain template variables or are known false positives
exclude_path = [
Expand Down
2 changes: 1 addition & 1 deletion notebooks/sax_01_sax.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"source": [
"# SAX circuit simulator\n",
"\n",
"[SAX](https://flaport.github.io/sax/) is a circuit solver written in JAX, writing your component models in SAX enables you not only to get the function values but the gradients, this is useful for circuit optimization.\n",
"[SAX](https://gdsfactory.github.io/sax/) is a circuit solver written in JAX, writing your component models in SAX enables you not only to get the function values but the gradients, this is useful for circuit optimization.\n",
"\n",
"This tutorial has been adapted from the SAX Quick Start and example notebooks.\n",
"\n",
Expand Down
Loading