Skip to content

Commit

Permalink
Fix in IPRK tableaus.
Browse files Browse the repository at this point in the history
  • Loading branch information
michakraus committed Sep 22, 2020
1 parent 7ed43b6 commit dfe9ad3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion src/tableaus/tableaus_eprk.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@


function getCoefficientsSymplecticEulerForward()
a = [[0.0 0.0]
[1.0 0.0]]
Expand Down
3 changes: 1 addition & 2 deletions src/tableaus/tableaus_iprk.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@

"Gauss-Legendre Runge-Kutta"
function getTableauIPGLRK(s::Int)
TableauIPRK(Symbol("IPGLRK", s), 2^s, TableauFIRK(getCoefficientsGLRK(s)))

TableauIPRK(Symbol("IPGLRK", s), 2^s, getCoefficientsGLRK(s))
end

0 comments on commit dfe9ad3

Please sign in to comment.