Skip to content

Commit

Permalink
New sections: Interval rootfinding, nonlinear solvers, BVPs, and opti…
Browse files Browse the repository at this point in the history
…mization

Some of them just have stub benchmarks for now.
  • Loading branch information
ChrisRackauckas committed Aug 24, 2023
1 parent afad700 commit 3d12ddf
Show file tree
Hide file tree
Showing 15 changed files with 5,193 additions and 10 deletions.
1,090 changes: 1,090 additions & 0 deletions benchmarks/BVP/Manifest.toml

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions benchmarks/BVP/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[deps]
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
SciMLBenchmarks = "31c91b34-3c75-11e9-0341-95557aab0344"

[compat]
Plots = "1.13"
SciMLBenchmarks = "0.1"
38 changes: 38 additions & 0 deletions benchmarks/BVP/test.jmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
title: Test
author: Chris Rackauckas
---

This is a test of the builder system. It often gets bumped in PRs related to CI.

```julia
using InteractiveUtils
versioninfo()
```

```julia
Threads.nthreads()
```

```julia
using Plots
plot(rand(20,20))
```

```math
\begin{equation}
y'(t) = \frac{0.2y(t-14)}{1 + y(t-14)^{10}} - 0.1y(t)
\end{equation}
```

$\alpha$

``u_0``

## Appendix

```julia, echo = false
using SciMLBenchmarks
SciMLBenchmarks.bench_footer(WEAVE_ARGS[:folder],WEAVE_ARGS[:file])
```

Loading

0 comments on commit 3d12ddf

Please sign in to comment.