Skip to content

Commit 942d79f

Browse files
authored
Merge pull request #38 from ChrisRackauckas/diffeq
update to new diffeq syntax
2 parents 7c1710a + 6311d15 commit 942d79f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

REQUIRE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
julia 0.6
22
Combinatorics 0.2
33
Distributions 0.8.10
4-
OrdinaryDiffEq 2.19.1
4+
OrdinaryDiffEq 3.0.0
55
GSL 0.3.1

src/densities/TracyWidom.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ cdf(d::Type{TracyWidom}, t::Real) = cdf(d(), t)
6464
# An internal function which sets up the Painleve II differential equation and
6565
# runs it through the Vern8 numerical integrator
6666
function _solve_painleve_ii{S<:Real}(t0::S, t::S)
67-
function deq(t, y, dy)
67+
function deq(dy, y, p, t)
6868
dy[1] = y[2]
6969
dy[2] = t*y[1]+2y[1]^3
7070
dy[3] = y[4]

0 commit comments

Comments
 (0)