Skip to content

Commit

Permalink
apply formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed Dec 10, 2024
1 parent b1b5be2 commit aa67eb4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/arkode/arkode_splittingstep.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,8 @@ static int splittingStep_TakeStep(ARKodeMem ark_mem, sunrealtype* dsmPtr,

N_VScale(ONE, ark_mem->yn, ark_mem->ycur);
retval = splittingStep_SequentialMethod(ark_mem, step_mem, 0, ark_mem->ycur);
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->ycur, "y_seq(:) =");
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->ycur,
"y_seq(:) =");
if (retval != ARK_SUCCESS)
{
SUNLogInfo(ARK_LOGGER, "end-sequential-method",
Expand All @@ -329,7 +330,8 @@ static int splittingStep_TakeStep(ARKodeMem ark_mem, sunrealtype* dsmPtr,
N_VScale(ONE, ark_mem->yn, ark_mem->tempv1);
retval = splittingStep_SequentialMethod(ark_mem, step_mem, i,
ark_mem->tempv1);
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->tempv1, "y_seq(:) =");
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->tempv1,
"y_seq(:) =");
if (retval != ARK_SUCCESS)
{
SUNLogInfo(ARK_LOGGER, "end-sequential-method",
Expand Down

0 comments on commit aa67eb4

Please sign in to comment.