Skip to content

Commit

Permalink
Merge pull request #495 from SciML/ChrisRackauckas-patch-6
Browse files Browse the repository at this point in the history
Test master
  • Loading branch information
ChrisRackauckas authored Aug 19, 2022
2 parents 6b63618 + 8fb6bec commit c161a02
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ stochastic differential equations solvers and utilities. While completely indepe
and usable on its own, users interested in using this
functionality should check out [DifferentialEquations.jl](https://github.com/SciML/DifferentialEquations.jl).


## API

StochasticDiffEq.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 StochasticDiffEq.jl algorithm to `solve`. For example, we can solve the [SDE tutorial from the docs](https://diffeq.sciml.ai/stable/tutorials/sde_example/) using the `SRIW1()` algorithm:
Expand Down
1 change: 1 addition & 0 deletions test/noindex_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Base.axes(x::NoIndexArray) = axes(x.x)
Base.similar(x::NoIndexArray, dims::Union{Integer, AbstractUnitRange}...) = NoIndexArray(similar(x.x, dims...))
Base.copyto!(x::NoIndexArray, y::NoIndexArray) = NoIndexArray(copyto!(x.x, y.x))
Base.copy(x::NoIndexArray) = NoIndexArray(copy(x.x))
Base.zero(x::NoIndexArray) = NoIndexArray(zero(x.x))
Base.fill!(x::NoIndexArray, y) = NoIndexArray(fill!(x.x, y))
Base.mapreduce(f, op, x::NoIndexArray; kwargs...) = mapreduce(f, op, x.x; kwargs...)
Base.any(f::Function, x::NoIndexArray; kwargs...) = any(f, x.x; kwargs...)
Expand Down

0 comments on commit c161a02

Please sign in to comment.