Skip to content

Commit

Permalink
set default for skip empty comms to false (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeverinDiederichs authored Mar 23, 2021
1 parent 832429e commit 6ea40ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Hipace.H
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public:
* Used to avoid send/recv for empty data */
int m_leftmost_box_rcv = std::numeric_limits<int>::max();
/** Whether to skip communications of boxes that contain no beam particles */
int m_skip_empty_comms = true;
int m_skip_empty_comms = false;

private:
/** Pointer to current (and only) instance of class Hipace */
Expand Down

0 comments on commit 6ea40ef

Please sign in to comment.