Skip to content

Commit e9db9a4

Browse files
committed
format clang
1 parent 45e122d commit e9db9a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/utils_aux.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,10 +196,10 @@ void OutputSummary::operator()() {
196196

197197
if (current_step % frequency_ == 0) {
198198
// Delete csv content current_step == 0 to, otherwise append mode
199-
std::ofstream file("output/final_data.csv", current_step == 0 ? std::ios::trunc : std::ios::app);
199+
std::ofstream file("output/final_data.csv",
200+
current_step == 0 ? std::ios::trunc : std::ios::app);
200201
if (file.is_open()) {
201202
if (current_step == 0) {
202-
203203
file
204204
<< "total_days,total_hours,total_minutes,tumor_radius,num_cells,"
205205
"num_tumor_cells,tumor_cells_type1,tumor_cells_type2,tumor_"

0 commit comments

Comments
 (0)