Skip to content

Commit

Permalink
added line break to prod message
Browse files Browse the repository at this point in the history
  • Loading branch information
sandro-elsweijer committed May 21, 2023
1 parent dc9d7bc commit 59dff3d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions benchmarks/time_forest_partition.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,10 @@ t8_time_forest_create_cmesh (const char *msh_file, int mesh_dim,
if (msh_file != NULL) {
if (use_occ) {
partition = 0;
t8_global_productionf("The cmesh is not partitioned due to the usage of the curved mesh option. "
"Timing will not be comparable to non-curved meshes.");
} else {
t8_global_productionf("The cmesh is not partitioned due to the usage of the curved mesh option. \n"
"Timing will not be comparable to non-curved meshes. \n");
}
else {
partition = 1;
}
/* Create a cmesh from the given mesh files */
Expand Down

0 comments on commit 59dff3d

Please sign in to comment.