Add ITensorFormatter to developer tools and simplify the ecosystem graph#57
Merged
Conversation
Adds `ITensorFormatter` to the Developer Tools navigation dropdown alongside `ITensorPkgSkeleton`. It has a published docs site and is a tool people use when developing ITensor packages, so it belongs in that group. Also drops `SparseArraysBase` from the ecosystem overview graph, since it's an implementation detail of `GradedArrays` rather than something most users interact with when using the common features. Removing it also cleans up the layout: `GradedArrays` now sits directly above `TensorAlgebra` instead of being pulled to the side, so its edge no longer crosses the `DataGraphs` to `NamedGraphs` branch. `SparseArraysBase` stays in the Tensor Libraries dropdown for anyone who wants to find it. Follow-up to #56.
mtfishman
added a commit
that referenced
this pull request
Jun 22, 2026
) ## Summary Lists `ITensorFormatter` first in the Developer Tools dropdown. The formatter runs on every PR, while `ITensorPkgSkeleton` only comes up when creating a new package, so the more commonly used tool goes on top. Follow-up to #57.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
ITensorFormatterto the Developer Tools navigation dropdown alongsideITensorPkgSkeleton. It has a published docs site and is a tool people use when developing ITensor packages, so it belongs in that group.Also drops
SparseArraysBasefrom the ecosystem overview graph, since it's an implementation detail ofGradedArraysrather than something most users interact with when using the common features. Removing it also cleans up the layout:GradedArraysnow sits directly aboveTensorAlgebrainstead of being pulled to the side, so its edge no longer crosses theDataGraphstoNamedGraphsbranch.SparseArraysBasestays in the Tensor Libraries dropdown for anyone who wants to find it.Follow-up to #56.