From fedf8864d7ab0788d4f507de2a1bf51a3e3ba188 Mon Sep 17 00:00:00 2001 From: Hendrik Ranocha Date: Thu, 22 Aug 2024 07:32:26 +0200 Subject: [PATCH 1/2] format --- docs/make.jl | 4 ++-- src/time_integration_methods.jl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index fcae1918..68fecf2d 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -64,12 +64,12 @@ makedocs(modules = [RootedTrees], "tutorials/basics.md", "tutorials/RK_order_conditions.md", "tutorials/ARK_order_conditions.md", - "tutorials/Rosenbrock_order_conditions.md" + "tutorials/Rosenbrock_order_conditions.md", ], # "Benchmarks" => "benchmarks.md", "API reference" => "api_reference.md", "Contributing" => "contributing.md", - "License" => "license.md" + "License" => "license.md", ]) deploydocs(repo = "github.com/SciML/RootedTrees.jl", diff --git a/src/time_integration_methods.jl b/src/time_integration_methods.jl index 9725d1da..5e66b6ee 100644 --- a/src/time_integration_methods.jl +++ b/src/time_integration_methods.jl @@ -119,8 +119,8 @@ Reference: Section 315 of function residual_order_condition(t::RootedTree, rk::RungeKuttaMethod) ew = elementary_weight(t, rk) T = typeof(ew) - invγ = 1//γ(t) - invσ = 1//σ(t) + invγ = 1 // γ(t) + invσ = 1 // σ(t) (ew - invγ) * invσ end From 39cafe80a15e936d16ce6f8f562aa804cfc66e2b Mon Sep 17 00:00:00 2001 From: Hendrik Ranocha Date: Thu, 22 Aug 2024 07:35:41 +0200 Subject: [PATCH 2/2] format docs --- docs/make.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/make.jl b/docs/make.jl index 68fecf2d..fcae1918 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -64,12 +64,12 @@ makedocs(modules = [RootedTrees], "tutorials/basics.md", "tutorials/RK_order_conditions.md", "tutorials/ARK_order_conditions.md", - "tutorials/Rosenbrock_order_conditions.md", + "tutorials/Rosenbrock_order_conditions.md" ], # "Benchmarks" => "benchmarks.md", "API reference" => "api_reference.md", "Contributing" => "contributing.md", - "License" => "license.md", + "License" => "license.md" ]) deploydocs(repo = "github.com/SciML/RootedTrees.jl",