Skip to content

Commit fe6d795

Browse files
Merge #146
146: Add type hierarchy to docs, misc doc fixes r=charleskawczynski a=charleskawczynski This PR adds some type hierarchy to the docs Co-authored-by: Charles Kawczynski <[email protected]>
2 parents db758c5 + 69fba37 commit fe6d795

File tree

3 files changed

+25
-7
lines changed

3 files changed

+25
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
| **GHA CI** | [![gha ci][gha-ci-img]][gha-ci-url] |
88
| **Code Coverage** | [![codecov][codecov-img]][codecov-url] |
99

10-
[docs-bld-img]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/docs.yml/badge.svg
11-
[docs-bld-url]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/docs.yml
10+
[docs-bld-img]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/Documentation.yml/badge.svg
11+
[docs-bld-url]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/Documentation.yml
1212

1313
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg
1414
[docs-dev-url]: https://CliMA.github.io/ClimaTimeSteppers.jl/dev/
1515

16-
[gha-ci-img]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/ci.yml/badge.svg
17-
[gha-ci-url]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/ci.yml
16+
[gha-ci-img]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/UnitTests.yml/badge.svg
17+
[gha-ci-url]: https://github.com/CliMA/ClimaTimeSteppers.jl/actions/workflows/UnitTests.yml
1818

1919
[codecov-img]: https://codecov.io/gh/CliMA/ClimaTimeSteppers.jl/branch/main/graph/badge.svg
2020
[codecov-url]: https://codecov.io/gh/CliMA/ClimaTimeSteppers.jl

docs/src/dev/report_gen.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Algorithm comparisons
1+
# Report generator
22

3-
In this section, we compare the solution errors and convergence orders for several test problems and algorithms.
3+
In this section, we create a report comparing the solution errors and convergence orders for several test problems and algorithms.
44

55
```@example
66
include("report_gen.jl")

docs/src/dev/types.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,22 @@
22

33
In this section, we print out the type hierarchies of some classes via code snippets.
44

5-
TODO: fill out
5+
## Algorithms
6+
7+
```@example
8+
import AbstractTrees as AT
9+
import InteractiveUtils as IU
10+
import ClimaTimeSteppers as CTS
11+
AT.children(x::Type) = IU.subtypes(x)
12+
AT.print_tree(CTS.DistributedODEAlgorithm)
13+
```
14+
15+
## Tableaus
16+
17+
```@example
18+
import AbstractTrees as AT
19+
import InteractiveUtils as IU
20+
import ClimaTimeSteppers as CTS
21+
AT.children(x::Type) = IU.subtypes(x)
22+
AT.print_tree(CTS.AbstractTableau)
23+
```

0 commit comments

Comments
 (0)