Improve unskip by escaping early
1 unresolved thread
1 unresolved thread
When unskipping tasks, abort if a cell has no part or no gpart.
(note that the changes to cell_make_multipoles()
are mixed in by mistake but are in a currently unused function)
Merge request reports
Activity
mentioned in merge request !493 (merged)
1518 1535 } 1519 1536 } 1520 1537 1521 /* Otherwise, pair interation, recurse? */ 1522 else if (cell_can_recurse_in_pair_task(ci) && 1523 cell_can_recurse_in_pair_task(cj)) { 1538 /* Otherwise, pair interation */ 1539 else { 1540 1541 /* Should we even bother? */ 1542 if (!cell_is_active_hydro(ci, e) && !cell_is_active_hydro(cj, e)) return; mentioned in commit db8c453d
Please register or sign in to reply