Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Iterator version of rk solvers
Browse files Browse the repository at this point in the history
  • Loading branch information
pwl committed Nov 18, 2015
1 parent c1a9f76 commit a98195d
Show file tree
Hide file tree
Showing 5 changed files with 295 additions and 636 deletions.
306 changes: 0 additions & 306 deletions src/algorithms.jl

This file was deleted.

4 changes: 2 additions & 2 deletions src/dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ function DenseProblem(args...; tspan = [Inf], points = :all, method = bt_feuler,
end


# create an instance of the zero-th step for RKProblem
function Step(problem :: AbstractProblem)
# create an instance of the zero-th step for a problem
function Step(problem)
t0 = problem.t0
y0 = problem.y0
dy0 = problem.F(t0,y0)
Expand Down
Loading

0 comments on commit a98195d

Please sign in to comment.