Skip to content

Commit

Permalink
[skip ci] code format
Browse files Browse the repository at this point in the history
  • Loading branch information
xumingkuan committed Oct 2, 2020
1 parent f885652 commit c691248
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion taichi/program/state_flow_graph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,8 @@ bool StateFlowGraph::fuse() {
num_optimized_tasks, num_optimized_tasks + 2 * kMaxFusionDistance);
if (num_deleted_tasks)
modified = true;
num_optimized_tasks += std::min(kMaxFusionDistance, 2 * kMaxFusionDistance - num_deleted_tasks);
num_optimized_tasks += std::min(
kMaxFusionDistance, 2 * kMaxFusionDistance - num_deleted_tasks);
}
}

Expand Down

0 comments on commit c691248

Please sign in to comment.