-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmkdocs.yml
More file actions
67 lines (62 loc) · 1.8 KB
/
mkdocs.yml
File metadata and controls
67 lines (62 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
site_name: klujax
site_description: A sparse linear solver for JAX based on the KLU algorithm
site_url: https://flaport.github.io/klujax
repo_url: https://github.com/flaport/klujax
repo_name: flaport/klujax
theme:
name: shadcn
show_title: true
site_author: Claude Code
show_stargazers: true
pygments_style:
light: shadcn-light
dark: github-dark
katex_options: {}
nav:
- Home: index.md
- Getting Started: getting-started.md
- Core Concepts: concepts.md
- API Reference:
- solve: api/solve.md
- dot: api/dot.md
- coalesce: api/coalesce.md
- analyze: api/analyze.md
- factor: api/factor.md
- refactor: api/refactor.md
- solve_with_symbol: api/solve-with-symbol.md
- solve_with_numeric: api/solve-with-numeric.md
- free_symbolic / free_numeric: api/free.md
- Examples:
- Basic Solve: examples/basic-solve.md
- Batched Systems: examples/batched.md
- Differentiation: examples/differentiation.md
- High-Performance Loop: examples/high-performance.md
- Newton-Raphson Solver: examples/newton-raphson.md
- Advanced:
- JAX Integration: advanced/jax-integration.md
- Memory Management: advanced/memory-management.md
- Performance Guide: advanced/performance.md
markdown_extensions:
- admonition
- attr_list
- def_list
- footnotes
- toc:
permalink: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_div_format
- pymdownx.blocks.tab
- pymdownx.details
- pymdownx.arithmatex:
generic: true
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
extra_javascript:
- https://unpkg.com/mermaid@11/dist/mermaid.min.js
- js/mermaid-init.js
plugins:
- search