[ET Trac] [Einstein Toolkit] #1504: MoL RK87 non-functional
Einstein Toolkit
trac-noreply at einsteintoolkit.org
Fri Dec 13 12:32:56 CST 2013
#1504: MoL RK87 non-functional
-----------------------------------+----------------------------------------
Reporter: rhaas | Owner:
Type: defect | Status: new
Priority: major | Milestone:
Component: EinsteinToolkit thorn | Version: development version
Keywords: MoL |
-----------------------------------+----------------------------------------
currently (Noether release and trunk, since rev 190) MoL's RK87.c file
contains a line (line 234):
{{{
CCTK_WARN(0, "Peter has been too lazy to write the RK87 routine "
"out for array variables. Better send him an email...");
}}}
which unconditionally aborts the run whenever RK87 is used, even when used
for grid functions and not grid arrays. The fix is obviously to check
MoLNumEvolvedArrayVariables before aborting:
{{{
if (MoLNumEvolvedArrayVariables > 0 ||
MoLNumEvolvedComplexArrayVariables > 0)
{
CCTK_WARN(0, "Peter has been too lazy to write the RK87 routine "
"out for array variables. Better send him an email...");
}
}}}
--
Ticket URL: <https://trac.einsteintoolkit.org/ticket/1504>
Einstein Toolkit <http://einsteintoolkit.org>
The Einstein Toolkit
More information about the Trac
mailing list