Skip to content

Commit

Permalink
fix depwarns
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed May 3, 2017
1 parent 45c4a6c commit a62a06b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/adaptive/sde_linearadaptive_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ add_probs[2] = prob_sde_additivesystem


for i in 1:2
bigprob = SDEProblem(probs[i].f,probs[i].g,big(probs[i].u0),(big(probs[i].tspan[1]),big(probs[i].tspan[2])),noise=probs[i].noise)
add_bigprob = SDEProblem(add_probs[i].f,add_probs[i].g,big(add_probs[i].u0),(big(add_probs[i].tspan[1]),big(add_probs[i].tspan[2])),noise=add_probs[i].noise)
bigprob = SDEProblem(probs[i].f,probs[i].g,big.(probs[i].u0),(big.(probs[i].tspan[1]),big.(probs[i].tspan[2])),noise=probs[i].noise)
add_bigprob = SDEProblem(add_probs[i].f,add_probs[i].g,big.(add_probs[i].u0),(big.(add_probs[i].tspan[1]),big.(add_probs[i].tspan[2])),noise=add_probs[i].noise)
## SRIW1

srand(100)
Expand Down

0 comments on commit a62a06b

Please sign in to comment.