Skip to content

Commit

Permalink
docs: minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
agdestein committed Nov 29, 2024
1 parent e93cdc7 commit 40b4c64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ export default defineConfig({
text: 'Guide',
items: [
{ text: 'Floating point precision', link: '/manual/precision' },
{ text: 'GPU Support', link: '/manual/gpu' },
{ text: 'GPU support', link: '/manual/gpu' },
{ text: 'Differentiating code', link: '/manual/differentiability' },
{ text: 'Matrices', link: '/manual/matrices' },
{ text: 'Sparse matrices', link: '/manual/matrices' },
{ text: 'Temperature equation', link: '/manual/temperature' },
{ text: 'Large eddy simulation', link: '/manual/les' },
{ text: 'SciML', link: '/manual/sciml' },
Expand Down Expand Up @@ -187,9 +187,9 @@ export default defineConfig({
text: 'Guide',
items: [
{ text: 'Floating point precision', link: '/manual/precision' },
{ text: 'GPU Support', link: '/manual/gpu' },
{ text: 'GPU support', link: '/manual/gpu' },
{ text: 'Differentiating code', link: '/manual/differentiability' },
{ text: 'Matrices', link: '/manual/matrices' },
{ text: 'Sparse matrices', link: '/manual/matrices' },
{ text: 'Temperature equation', link: '/manual/temperature' },
{ text: 'Large eddy simulation', link: '/manual/les' },
{ text: 'SciML', link: '/manual/sciml' },
Expand Down
4 changes: 2 additions & 2 deletions docs/src/manual/matrices.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
CurrentModule = IncompressibleNavierStokes
```

# Matrices
# Sparse matrices

In IncompressibleNavierStokes, all operators are implemented as matrix-free kernels.
However, access to the underlying matrices can sometimes be useful, for example
to precompute matrix factorizations.
We therefore provide sparse matrix versions of some of the linear operators (see
full list [below](#API)).
full list [below](#api)).

## Example

Expand Down

0 comments on commit 40b4c64

Please sign in to comment.