Skip to content

Commit aa67eb4

Browse files
committed
apply formatting
1 parent b1b5be2 commit aa67eb4

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/arkode/arkode_splittingstep.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,8 @@ static int splittingStep_TakeStep(ARKodeMem ark_mem, sunrealtype* dsmPtr,
306306

307307
N_VScale(ONE, ark_mem->yn, ark_mem->ycur);
308308
retval = splittingStep_SequentialMethod(ark_mem, step_mem, 0, ark_mem->ycur);
309-
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->ycur, "y_seq(:) =");
309+
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->ycur,
310+
"y_seq(:) =");
310311
if (retval != ARK_SUCCESS)
311312
{
312313
SUNLogInfo(ARK_LOGGER, "end-sequential-method",
@@ -329,7 +330,8 @@ static int splittingStep_TakeStep(ARKodeMem ark_mem, sunrealtype* dsmPtr,
329330
N_VScale(ONE, ark_mem->yn, ark_mem->tempv1);
330331
retval = splittingStep_SequentialMethod(ark_mem, step_mem, i,
331332
ark_mem->tempv1);
332-
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->tempv1, "y_seq(:) =");
333+
SUNLogExtraDebugVec(ARK_LOGGER, "sequential state", ark_mem->tempv1,
334+
"y_seq(:) =");
333335
if (retval != ARK_SUCCESS)
334336
{
335337
SUNLogInfo(ARK_LOGGER, "end-sequential-method",

0 commit comments

Comments
 (0)