|
| 1 | +# SymbolicIndexingInterface.jl: Arrays of Arrays and Even Deeper |
| 2 | + |
| 3 | +SymbolicIndexingInterface.jl is a set of interface functions for handling containers |
| 4 | +of symbolic variables. It also contains one such container: `SymbolCache`. |
| 5 | + |
| 6 | +## Installation |
| 7 | + |
| 8 | +To install SymbolicIndexingInterface.jl, use the Julia package manager: |
| 9 | + |
| 10 | +```julia |
| 11 | +using Pkg |
| 12 | +Pkg.add("SymbolicIndexingInterface") |
| 13 | +``` |
| 14 | + |
| 15 | +## Contributing |
| 16 | + |
| 17 | +- Please refer to the |
| 18 | + [SciML ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://github.com/SciML/ColPrac/blob/master/README.md) |
| 19 | + for guidance on PRs, issues, and other matters relating to contributing to SciML. |
| 20 | +- There are a few community forums: |
| 21 | + - the #diffeq-bridged channel in the [Julia Slack](https://julialang.org/slack/) |
| 22 | + - [JuliaDiffEq](https://gitter.im/JuliaDiffEq/Lobby) on Gitter |
| 23 | + - on the [Julia Discourse forums](https://discourse.julialang.org) |
| 24 | + - see also [SciML Community page](https://sciml.ai/community/) |
| 25 | + |
| 26 | +## Reproducibility |
| 27 | +```@raw html |
| 28 | +<details><summary>The documentation of this SciML package was built using these direct dependencies,</summary> |
| 29 | +``` |
| 30 | +```@example |
| 31 | +using Pkg # hide |
| 32 | +Pkg.status() # hide |
| 33 | +``` |
| 34 | +```@raw html |
| 35 | +</details> |
| 36 | +``` |
| 37 | +```@raw html |
| 38 | +<details><summary>and using this machine and Julia version.</summary> |
| 39 | +``` |
| 40 | +```@example |
| 41 | +using InteractiveUtils # hide |
| 42 | +versioninfo() # hide |
| 43 | +``` |
| 44 | +```@raw html |
| 45 | +</details> |
| 46 | +``` |
| 47 | +```@raw html |
| 48 | +<details><summary>A more complete overview of all dependencies and their versions is also provided.</summary> |
| 49 | +``` |
| 50 | +```@example |
| 51 | +using Pkg # hide |
| 52 | +Pkg.status(;mode = PKGMODE_MANIFEST) # hide |
| 53 | +``` |
| 54 | +```@raw html |
| 55 | +</details> |
| 56 | +``` |
| 57 | +```@raw html |
| 58 | +You can also download the |
| 59 | +<a href=" |
| 60 | +``` |
| 61 | +```@eval |
| 62 | +using TOML |
| 63 | +version = TOML.parse(read("../../Project.toml",String))["version"] |
| 64 | +name = TOML.parse(read("../../Project.toml",String))["name"] |
| 65 | +link = "https://github.com/SciML/"*name*".jl/tree/gh-pages/v"*version*"/assets/Manifest.toml" |
| 66 | +``` |
| 67 | +```@raw html |
| 68 | +">manifest</a> file and the |
| 69 | +<a href=" |
| 70 | +``` |
| 71 | +```@eval |
| 72 | +using TOML |
| 73 | +version = TOML.parse(read("../../Project.toml",String))["version"] |
| 74 | +name = TOML.parse(read("../../Project.toml",String))["name"] |
| 75 | +link = "https://github.com/SciML/"*name*".jl/tree/gh-pages/v"*version*"/assets/Project.toml" |
| 76 | +``` |
| 77 | +```@raw html |
| 78 | +">project</a> file. |
| 79 | +``` |
0 commit comments