Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Jan 29, 2020
2 parents 6196578 + 55082ca commit 7d65bf3
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,20 @@ build:
- julia -e "using InteractiveUtils;
versioninfo()"

test-arm1:
extends: .test
variables:
GROUP: "Interface"
script:
- julia --project -e "using Pkg; Pkg.test();"

test-arm2:
extends: .test
variables:
GROUP: "Regression"
script:
- julia --project -e "using Pkg; Pkg.test();"

test-multithreading:
extends: .test
variables:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ functionality should check out [DifferentialEquations.jl](https://github.com/Jul

## API

OrdinaryDiffEq.jl is part of the JuliaDiffEq common interface, but can be used independently of DifferentialEquations.jl. The only requirement is that the user passes an OrdinaryDiffEq.jl algorithm to `solve`. For example, we can solve the [ODE tutorial from the docs](http://docs.juliadiffeq.org/dev/tutorials/ode_example.html) using the `Tsit5()` algorithm:
OrdinaryDiffEq.jl is part of the JuliaDiffEq common interface, but can be used independently of DifferentialEquations.jl. The only requirement is that the user passes an OrdinaryDiffEq.jl algorithm to `solve`. For example, we can solve the [ODE tutorial from the docs](https://docs.juliadiffeq.org/dev/tutorials/ode_example/) using the `Tsit5()` algorithm:

```julia
using OrdinaryDiffEq
Expand Down Expand Up @@ -58,7 +58,7 @@ prob = ODEProblem(lorenz,u0,tspan)
sol = solve(prob,Tsit5())
```

For "refined ODEs" like dynamical equations and `SecondOrderODEProblem`s, refer to the [DiffEqDocs](http://docs.juliadiffeq.org/dev/types/ode_types.html). For example, in [DiffEqTutorials.jl](https://github.com/JuliaDiffEq/DiffEqTutorials.jl) we show how to solve equations of motion using symplectic methods:
For "refined ODEs" like dynamical equations and `SecondOrderODEProblem`s, refer to the [DiffEqDocs](https://docs.juliadiffeq.org/dev/types/ode_types/). For example, in [DiffEqTutorials.jl](https://github.com/JuliaDiffEq/DiffEqTutorials.jl) we show how to solve equations of motion using symplectic methods:

```julia
function HH_acceleration(dv,v,u,p,t)
Expand Down

0 comments on commit 7d65bf3

Please sign in to comment.