File tree Expand file tree Collapse file tree 3 files changed +25
-7
lines changed Expand file tree Collapse file tree 3 files changed +25
-7
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
66include("report_gen.jl")
Original file line number Diff line number Diff line change 22
33In 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+ ```
You can’t perform that action at this time.
0 commit comments