Skip to content

Commit 5b0b409

Browse files
SKopeczranocha
andauthored
Consolidate in-place implementations for ConservativePDSProblems and PDSProblems (#191)
* single in-place implementation of MPRK22 for ConservativePDSProblem and PDSProblem * consolidate all in-place implementations in mprk.jl and sspmprk.jl * removed legacy code * Apply suggestions from code review Co-authored-by: Hendrik Ranocha <ranocha@users.noreply.github.com> * bugfix --------- Co-authored-by: Hendrik Ranocha <ranocha@users.noreply.github.com>
1 parent 5f12d30 commit 5b0b409

3 files changed

Lines changed: 80 additions & 367 deletions

File tree

src/interpolation.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ end
4242

4343
#######################################################################################
4444
# interpolation specializations
45-
const MPRKCaches = Union{MPEConstantCache, MPECache, MPEConservativeCache,
46-
MPRK22ConstantCache, MPRK22Cache, MPRK22ConservativeCache,
47-
MPRK43ConstantCache, MPRK43Cache, MPRK43ConservativeCache,
48-
SSPMPRK22ConstantCache, SSPMPRK22Cache, SSPMPRK22ConservativeCache,
49-
SSPMPRK43ConstantCache, SSPMPRK43Cache, SSPMPRK43ConservativeCache,
45+
const MPRKCaches = Union{MPEConstantCache, MPECache,
46+
MPRK22ConstantCache, MPRK22Cache,
47+
MPRK43ConstantCache, MPRK43Cache,
48+
SSPMPRK22ConstantCache, SSPMPRK22Cache,
49+
SSPMPRK43ConstantCache, SSPMPRK43Cache,
5050
MPDeCConstantCache, MPDeCCache, MPDeCConservativeCache}
5151

5252
function interp_summary(::Type{cacheType},

0 commit comments

Comments
 (0)