Motivation
MAPL_AllocateCoupling is a legacy MAPL2 Base symbol being removed as part of the MAPL3 migration. The MAPL3 replacement is MAPL_FieldEmptyComplete (from mapl3g_Field_API), which has identical behavior.
Caller in this repo
GEOSgigatraj_GridComp/GEOS_GigatrajGridComp.F90 line 382
Changes required
- Add
use mapl3g_Field_API, only: MAPL_FieldEmptyComplete to the file
- Replace
call MAPL_AllocateCoupling(...) with call MAPL_FieldEmptyComplete(...)
Context
Part of the MAPL3 Base cleanup. The removal of MAPL_AllocateCoupling from MAPL Base cannot proceed until all external callers have been migrated. A corresponding MAPL PR will do the final removal once this and the GOCART companion issue are merged.
Motivation
MAPL_AllocateCouplingis a legacy MAPL2 Base symbol being removed as part of the MAPL3 migration. The MAPL3 replacement isMAPL_FieldEmptyComplete(frommapl3g_Field_API), which has identical behavior.Caller in this repo
GEOSgigatraj_GridComp/GEOS_GigatrajGridComp.F90line 382Changes required
use mapl3g_Field_API, only: MAPL_FieldEmptyCompleteto the filecall MAPL_AllocateCoupling(...)withcall MAPL_FieldEmptyComplete(...)Context
Part of the MAPL3 Base cleanup. The removal of
MAPL_AllocateCouplingfrom MAPL Base cannot proceed until all external callers have been migrated. A corresponding MAPL PR will do the final removal once this and the GOCART companion issue are merged.