Skip to content

Commit bdbc208

Browse files
committed
apply JuliaFormatter
1 parent e283773 commit bdbc208

File tree

83 files changed

+6041
-2992
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+6041
-2992
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ Preferences = "1.3"
7171
Printf = "1.9"
7272
PyCall = "1.96"
7373
PythonCall = "0.9"
74+
QuasiMonteCarlo = "0.3"
7475
RCall = "0.13.18"
7576
RecipesBase = "0.7.0, 0.8, 1.0"
7677
RecursiveArrayTools = "2.33"
@@ -83,7 +84,6 @@ Statistics = "1"
8384
SymbolicIndexingInterface = "0.2"
8485
Tables = "1"
8586
TruncatedStacktraces = "1"
86-
QuasiMonteCarlo = "0.3"
8787
Zygote = "0.6"
8888
julia = "1.9"
8989

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![codecov](https://codecov.io/gh/SciML/SciMLBase.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/SciML/SciMLBase.jl)
77
[![Build Status](https://github.com/SciML/SciMLBase.jl/workflows/CI/badge.svg)](https://github.com/SciML/SciMLBase.jl/actions?query=workflow%3ACI)
88

9-
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)
9+
[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor%27s%20Guide-blueviolet)](https://github.com/SciML/ColPrac)
1010
[![SciML Code Style](https://img.shields.io/static/v1?label=code%20style&message=SciML&color=9558b2&labelColor=389826)](https://github.com/SciML/SciMLStyle)
1111

1212
SciMLBase.jl is the core interface definition of the SciML ecosystem. It is a
@@ -17,11 +17,11 @@ supply the common interface and allow for interexchange of mathematical problems
1717

1818
The breaking changes in v2.0 are:
1919

20-
* `IntegralProblem` has moved to an interface with `IntegralFunction` and `BatchedIntegralFunction` which requires specifying `prototype`s for the values to be modified
21-
instead of `nout` and `batch`. https://github.com/SciML/SciMLBase.jl/pull/497
22-
* `ODEProblem` was made temporarily into a `mutable struct` to allow for EnzymeRules support. Using the mutation throws a warning that this is only experimental and should not be relied on.
23-
https://github.com/SciML/SciMLBase.jl/pull/501
24-
* `BVProblem` now has a new interface for `TwoPointBVProblem` which splits the bc terms for the two sides, forcing a true two-point BVProblem to allow for further specializations and to allow
25-
for wrapping Fortran solvers in the interface. https://github.com/SciML/SciMLBase.jl/pull/477
26-
* `SDEProblem` constructor was changed to remove an anti-pattern which required passing the diffusion function `g` twice, i.e. `SDEProblem(SDEFunction(f,g),g, ...)`.
27-
Now this is simply `SDEProblem(SDEFunction(f,g),...)`. https://github.com/SciML/SciMLBase.jl/pull/489
20+
- `IntegralProblem` has moved to an interface with `IntegralFunction` and `BatchedIntegralFunction` which requires specifying `prototype`s for the values to be modified
21+
instead of `nout` and `batch`. https://github.com/SciML/SciMLBase.jl/pull/497
22+
- `ODEProblem` was made temporarily into a `mutable struct` to allow for EnzymeRules support. Using the mutation throws a warning that this is only experimental and should not be relied on.
23+
https://github.com/SciML/SciMLBase.jl/pull/501
24+
- `BVProblem` now has a new interface for `TwoPointBVProblem` which splits the bc terms for the two sides, forcing a true two-point BVProblem to allow for further specializations and to allow
25+
for wrapping Fortran solvers in the interface. https://github.com/SciML/SciMLBase.jl/pull/477
26+
- `SDEProblem` constructor was changed to remove an anti-pattern which required passing the diffusion function `g` twice, i.e. `SDEProblem(SDEFunction(f,g),g, ...)`.
27+
Now this is simply `SDEProblem(SDEFunction(f,g),...)`. https://github.com/SciML/SciMLBase.jl/pull/489

docs/make.jl

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
using Documenter, SciMLBase, ModelingToolkit
22

3-
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml", force = true)
4-
cp("./docs/Project.toml", "./docs/src/assets/Project.toml", force = true)
3+
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml"; force = true)
4+
cp("./docs/Project.toml", "./docs/src/assets/Project.toml"; force = true)
55

66
include("pages.jl")
77

8-
makedocs(sitename = "SciMLBase.jl",
8+
makedocs(;
9+
sitename = "SciMLBase.jl",
910
authors = "Chris Rackauckas",
1011
modules = [SciMLBase, ModelingToolkit],
11-
clean = true, doctest = false, linkcheck = true,
12+
clean = true,
13+
doctest = false,
14+
linkcheck = true,
1215
warnonly = [:docs_block, :missing_docs],
13-
format = Documenter.HTML(assets = ["assets/favicon.ico"],
14-
canonical = "https://docs.sciml.ai/SciMLBase/stable"),
15-
pages = pages)
16+
format = Documenter.HTML(;
17+
assets = ["assets/favicon.ico"],
18+
canonical = "https://docs.sciml.ai/SciMLBase/stable",),
19+
pages = pages,)
1620

17-
deploydocs(repo = "github.com/SciML/SciMLBase.jl.git";
18-
push_preview = true)
21+
deploydocs(; repo = "github.com/SciML/SciMLBase.jl.git", push_preview = true)

docs/src/fundamentals/FAQ.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ See [ColPrac: Contributor's Guide on Collaborative Practices for Community Packa
1616

1717
## Are there developer programs to help fund parties interested in helping develop SciML?
1818

19-
Yes! See [the SciML Developer Programs](https://sciml.ai/dev/) webpage.
19+
Yes! See [the SciML Developer Programs](https://sciml.ai/dev/) webpage.

0 commit comments

Comments
 (0)